···5454 ['"Have some candy"',
5555 '"This kind old lady is staring into the corner holding out a rock to no one"',
5656 Global.UnitType.PRIEST
5757- ]
5757+ ],
5858+5959+ ['"Where... am I?"',
6060+ '"The patient is walking in circles on the street"',
6161+ Global.UnitType.PRIEST
6262+ ],
6363+6464+ ['"Do you have a news paper I could borrow?"',
6565+ '"The patient asked you calmly but they are covered in bruises"',
6666+ Global.UnitType.PRIEST
6767+ ],
6868+6969+ ['"It\'s a bit cold in here, could you light my fire please?"',
7070+ '"Every cold breath of the patient\'s is visible from how cold their body is"',
7171+ Global.UnitType.PRIEST
7272+ ],
7373+7474+ # ๐ณ๏ธโ๐๐ณ๏ธโ๐๐ณ๏ธโ๐
7575+ ['"Please call my wife! I need her!"',
7676+ '"The patient\'s leg is barely attached, she is struggling to stay concious"',
7777+ Global.UnitType.DOCTOR
7878+ ],
7979+8080+ ['"Please call my husband! I need him!"',
8181+ '"The patient\'s leg is barely attached, he is struggling to stay concious"',
8282+ Global.UnitType.DOCTOR
8383+ ],
8484+ # ๐ณ๏ธโ๐๐ณ๏ธโ๐๐ณ๏ธโ๐
8585+8686+ ['"Filthy soulstealer..."',
8787+ '"The patient clutches their arm while rocking back and forth"',
8888+ Global.UnitType.PRIEST
8989+ ],
9090+9191+ ['"(A low growl is coming from the patient.)"',
9292+ '"The patient very slowly approaches while shivering"',
9393+ Global.UnitType.PRIEST
9494+ ],
9595+9696+ ['"This iron stuff tastes terrible..."',
9797+ '"The patient is having coughing fits resulting in blood"',
9898+ Global.UnitType.DOCTOR
9999+ ],
100100+101101+ ['"how do you supose they breath in those masks?"',
102102+ '"The patient is cold to the touch"',
103103+ Global.UnitType.PRIEST
104104+ ],
58105]
5910660107func _ready() -> void:
···66113 fact_listlabel.text = "It's... a skeleton with a blue eye?"
67114 correct_choice = Global.UnitType.PRIEST
68115 else:
6969- var random_dialogue_index: int = randi() % dialogues_array.size()
7070- npc_text_label.text = dialogues_array[random_dialogue_index][0]
7171- fact_listlabel.text = dialogues_array[random_dialogue_index][1]
7272- correct_choice = dialogues_array[random_dialogue_index][2]
116116+ var random_dialogue_index: int = randi() % dialogues_array.size()
117117+ npc_text_label.text = dialogues_array[random_dialogue_index][0]
118118+ fact_listlabel.text = dialogues_array[random_dialogue_index][1]
119119+ correct_choice = dialogues_array[random_dialogue_index][2]
7312074121func choice_check(choice) -> bool:
75122 if choice == correct_choice: