AbstractAffection/Scripts/story_label.gd
2025-02-15 19:20:49 +01:00

55 lines
2.3 KiB
GDScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

extends Button
var text_array: Array[String]
var page = 0
func _ready() -> void:
set_text_array()
set_text_to_page()
func set_text_to_page() -> void:
self.text = text_array[page]
func next_page() -> void:
if page < text_array.size() - 1:
page += 1
set_text_to_page()
else:
var character = get_node("/root/GameplayScene/Character")
if character.abstraction > 3:
var winScene = load("res://Scenes/win_screen.tscn")
get_tree().change_scene_to_packed(winScene)
else:
var lossScene = load("res://Scenes/loss_screen.tscn")
get_tree().change_scene_to_packed(lossScene)
func set_text_array() -> void:
text_array.push_back("[Autumn]: Hi, Im Autumn.")
text_array.push_back("[Autumn]: I study veterinary medicine and have a part-time job as a veterinary assistant.\n
I handle all sorts of things around the clinic ranging from procedures to comforting pets and making sure things run smoothly.\n
I wouldnt trade it for anything though.\n
Are you an animal person?")
text_array.push_back("[Autumn]: In my spare time I love to go shopping, do yoga and go hiking in nature.\n
My recent addictions include flavored ChapSticks and Pumpkin-Spice Latte.")
text_array.push_back("[Autumn]: Well, I do have a peculiar hobby… its taxidermy.\n
I know its unusual, but I am just fascinated by animals and their anatomy.\n
I collect pieces to appreciate it up close.\n
A lot of people think its strange, but to me its a way to respect the animals and preserve their natural state.")
text_array.push_back("[Autumn]: My favorite piece is that of a lion I inherited from my grandfather.\n
I think part of the reason why I am so fond of it is the memory I have of my grandfather telling me the story of the lions life and how it ended.\n
I must say, the lion can be a bit scary at night though, haha.")
text_array.push_back("[Autumn]: I love the fresh air and being surrounded by nature.\n
When I go hiking it really helps me re-align with nature in contrast to the chaos that working at the clinic can bring.\n
If youre quiet enough during a hike, you might even spot a few animals!")
text_array.push_back("[Autumn]: Sometimes though,\n
Id like to have a little picknick or maybe throw down a blanket and read a good book.")
text_array.push_back("[Autumn]: Thanks, It was a pleasure to meet you.")