finale = {} function finale.init() character():breakUpParty(getPlayerSprite()) AddEnclosureZone("lucas", "hotspring_enclosure") MoveSpriteToWarp("kuma", "kumatora_start") SetDirection("kuma", Direction.UP) SetAnimation("kuma", "swim_still") MakeSpriteSolid("kuma") SetInteractionScript("kuma", "talk_to_kuma") MoveSpriteToWarp("duster", "duster_start") SetDirection("duster", Direction.RIGHT) SetAnimation("duster", "swim_still") MakeSpriteSolid("duster") SetInteractionScript("duster", "talk_to_duster") MoveSpriteToWarp("boney", "boney_start") SetDirection("boney", Direction.DOWN) SetAnimation("boney", "asleep") end function finale.talk_to_kuma() SetDirection("kuma", Direction.UP) StartCutscene() DisplayMessage("* Kumatora doesn't respond.\n\f* She is grumbling to herself, and picking at the grass growing over the wall.", "", SpeakerType.NONE) WaitForEndOfMessage() HideCutsceneBars() end function finale.talk_to_duster() SetDirection("duster", Direction.RIGHT) StartCutscene() DisplayMessage("* Duster doesn't respond.\n\f* He is simply staring at his own reflection in the water.", "", SpeakerType.NONE) WaitForEndOfMessage() HideCutsceneBars() end