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

102 lines
3.8 KiB
GDScript
Raw 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
@onready var character = get_node("/root/GameplayScene/Character")
@export var vibe: String
var text_array: Array[String]
var page = 0
func _ready() -> void:
if self.name == "Positive":
set_text_array_positive()
elif self.name == "Neutral":
set_text_array_neutral()
elif self.name == "Negative":
set_text_array_negative()
character._next_page_neu()
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()
character._next_page_neu()
func set_text_array_positive() -> void:
text_array.push_back("Hey Autumn.\n
I love your name, its perfect for this season.\n
So, what do you do in your daily life?")
text_array.push_back("Thats wonderful!\n
My family always had pets, so naturally I love animals!\n
What do you like to do for fun?")
text_array.push_back("Interesting, you already struck me as the outdoors type who loves nature, I appreciate that.\n
If you had to name one thing that you love the most about your favorite hobby, what would it be?")
text_array.push_back("Thats fascinating,\n
I cant say I have met anyone before who is into taxidermy,\n
but I think its very admirable.")
text_array.push_back("Aww, aside from when it gets a bit scary at night, that sounds very sweet.\n
Anyway, aside from taxidermy, what about being outdoors do you like?")
text_array.push_back("I know what you mean, it always feels so magical when youre in harmony with your surroundings.")
text_array.push_back("Im all about reading too! Getting lost in a good book is such a good way to unwind.")
text_array.push_back("The feeling is mutual, Autumn!\n
I love how passionate you are about what you do.\n
Id love to chat more soon.")
func set_text_array_neutral() -> void:
text_array.push_back("Hey Autumn.\n
Nice to meet you.\n
So, what do you do in your daily life?")
text_array.push_back("Wow, you sound… ambitious.\n
I dont have any pets, but I guess you could say I do like animals.\n
What do you like to do for fun?")
text_array.push_back("Get out of my head, me too!\n
If you had to name one thing that you love the most about your favorite hobby, what would it be?")
text_array.push_back("That sounds cool, do you have a favorite piece?")
text_array.push_back("You seem very passionate, I respect that.\n
Anyway, aside from taxidermy, what about being outdoors do you like?")
text_array.push_back("Well, I know a few trails myself.\n
Maybe youd like to go on a hike together sometimes?")
text_array.push_back("I dont think I would last more than an hour without access to the internet")
text_array.push_back("It was nice to meet you too. I hope you have a good time with your next dates.")
func set_text_array_negative() -> void:
text_array.push_back("Hey “Autumn?”\n
Is that your real name or just some nickname for the season?\n
So, what do you do in your daily life?")
text_array.push_back("That sounds hectic.\n
I dont really like animals, especially sick ones.\n
What do you like to do for fun?")
text_array.push_back("Wow, run of the mill with you it seems.\n
If you had to name one thing that you love the most about your favorite hobby, what would it be?")
text_array.push_back("Taxidermy? Thats kind of weird.\n
By the way, is it me or did you also hear the alarm go off just now?")
text_array.push_back("So in the honor of an old man, youre stuck with a scary lion?\n
How unfortunate.")
text_array.push_back("If I had to walk a long distance with nothing in sight but trees I would be bored out of my mind!")
text_array.push_back("A book? I dont know, I get bored pretty quickly.")
text_array.push_back("Yeah, thanks for the chat. Good luck with the taxidermy, I guess.")