diff --git a/game/images/ending/b_sketch.png b/game/images/ending/b_sketch.png new file mode 100644 index 0000000..8b6e13f Binary files /dev/null and b/game/images/ending/b_sketch.png differ diff --git a/game/images/ending/c_sketch.png b/game/images/ending/c_sketch.png new file mode 100644 index 0000000..bb3bbd8 Binary files /dev/null and b/game/images/ending/c_sketch.png differ diff --git a/game/images/ending/d_sketch.png b/game/images/ending/d_sketch.png new file mode 100644 index 0000000..de200a1 Binary files /dev/null and b/game/images/ending/d_sketch.png differ diff --git a/game/storyline.rpy b/game/storyline.rpy index b5a9844..61fc7db 100644 --- a/game/storyline.rpy +++ b/game/storyline.rpy @@ -53,17 +53,39 @@ label storyline: call .ending return +image b_credits = Composite( + (1920, 11000), + (0, 0), "credits", + (0, 10410), "b_sketch") + +image c_credits = Composite( + (1920, 11000), + (0, 0), "credits", + (0, 10410), "c_sketch") + +image d_credits = Composite( + (1920, 11000), + (0, 0), "credits", + (0, 10410), "d_sketch") + label .ending: play music "audio/OST/Dino Destiny Reader.ogg" - scene credits at Pan((0, 0),(0, 7400), 61) with fade - pause 1200 - scene black with fade - stop music fadeout 3.0 - pause 5 + call get_ending + if _return == 4: + scene d_credits at Pan((0, 0),(0, 9850), 1) with fade + elif _return == 3: + scene c_credits at Pan((0, 0),(0, 9850), 1) with fade + else: + scene b_credits at Pan((0, 0),(0, 9850), 1) with fade + pause + stop music fadeout 5 + scene black with Dissolve(3) + pause 2 if tradwife: - scene c10 with fade + scene c10 with Dissolve(1.5) pause 20 elif anonscore >= 4 and fangscore >= 4: - scene ending_d_cg with fade + scene ending_d_cg with Dissolve(1.5) pause 20 + scene black with Dissolve(2) return