From a8c49696c570766577a6a464fe58abd4050f4dc1 Mon Sep 17 00:00:00 2001 From: Donato Suozzi Date: Sun, 18 Dec 2022 01:02:09 +0100 Subject: [PATCH] Add files via upload --- .../farewell/farewell_add_location.rpy | 20 +++ .../farewell/farewell_doing_homework.rpy | 19 +++ .../Submods/farewell/farewell_esperanto.rpy | 19 +++ .../farewell/farewell_going_backup.rpy | 17 +++ .../farewell/farewell_going_to_church.rpy | 18 +++ .../farewell/farewell_installing_submods.rpy | 21 ++++ .../game/Submods/farewell/farewell_modify.rpy | 117 ++++++++++++++++++ .../game/Submods/farewell/yes.rpy | 15 +++ 8 files changed, 246 insertions(+) create mode 100644 New-Stuff-to-Monika/game/Submods/farewell/farewell_add_location.rpy create mode 100644 New-Stuff-to-Monika/game/Submods/farewell/farewell_doing_homework.rpy create mode 100644 New-Stuff-to-Monika/game/Submods/farewell/farewell_esperanto.rpy create mode 100644 New-Stuff-to-Monika/game/Submods/farewell/farewell_going_backup.rpy create mode 100644 New-Stuff-to-Monika/game/Submods/farewell/farewell_going_to_church.rpy create mode 100644 New-Stuff-to-Monika/game/Submods/farewell/farewell_installing_submods.rpy create mode 100644 New-Stuff-to-Monika/game/Submods/farewell/farewell_modify.rpy create mode 100644 New-Stuff-to-Monika/game/Submods/farewell/yes.rpy diff --git a/New-Stuff-to-Monika/game/Submods/farewell/farewell_add_location.rpy b/New-Stuff-to-Monika/game/Submods/farewell/farewell_add_location.rpy new file mode 100644 index 0000000..81432d2 --- /dev/null +++ b/New-Stuff-to-Monika/game/Submods/farewell/farewell_add_location.rpy @@ -0,0 +1,20 @@ +init 5 python: + addEvent( + Event( + persistent.farewell_database, + eventlabel="bye_prompt_location", + unlocked=True, + prompt="I'm going to add a new location.", + pool=True + ), + code="BYE" + ) + +label bye_prompt_location: + m 1hua "Oh, okay!" + m 5ekblb "I want to know what is it..." + extend 5hkbfa " I'm really exited." + m 5hubsa "I hope it is a nice one, [player]!" + m 5hubsa "Hehehe~" + m 5hubsa "Anyway see you soon!" + return "quit" \ No newline at end of file diff --git a/New-Stuff-to-Monika/game/Submods/farewell/farewell_doing_homework.rpy b/New-Stuff-to-Monika/game/Submods/farewell/farewell_doing_homework.rpy new file mode 100644 index 0000000..a0a8b30 --- /dev/null +++ b/New-Stuff-to-Monika/game/Submods/farewell/farewell_doing_homework.rpy @@ -0,0 +1,19 @@ +init 5 python: + addEvent( + Event( + persistent.farewell_database, + eventlabel="bye_prompt_homework", + unlocked=True, + prompt="I'm going to do my homework.", + pool=True + ), + code="BYE" + ) + +label bye_prompt_homework: + m 1hua "Okay!" + m 5ekblb "I wish I was there to help you there, though." + extend 5hkbfa " I'd give you all the advice and support you need~" + m 5hubsa "I hope you finish your homework before your deadline, [player]!" + m 5hubsa "Good luck!" + return "quit" \ No newline at end of file diff --git a/New-Stuff-to-Monika/game/Submods/farewell/farewell_esperanto.rpy b/New-Stuff-to-Monika/game/Submods/farewell/farewell_esperanto.rpy new file mode 100644 index 0000000..768167b --- /dev/null +++ b/New-Stuff-to-Monika/game/Submods/farewell/farewell_esperanto.rpy @@ -0,0 +1,19 @@ +init 5 python: + addEvent( + Event( + persistent.farewell_database, + eventlabel="bye_prompt_esperanto", + unlocked=True, + prompt="I'm going to learn a bit of Esperanto.", + pool=True + ), + code="BYE" + ) + +label bye_prompt_esperanto: + m 1hua "Vere?" + m 5ekblb "Mi volas lerni Esperanto kun vi, sed ni havas de laboras..." + m 5hubsa "Post venos en ĉi tiu loko kun novaj vortoj, kiujn mi volas lerni [player]!" + m 5hkbfa "Gxis la revido post." + return "quit" + \ No newline at end of file diff --git a/New-Stuff-to-Monika/game/Submods/farewell/farewell_going_backup.rpy b/New-Stuff-to-Monika/game/Submods/farewell/farewell_going_backup.rpy new file mode 100644 index 0000000..0f4a44f --- /dev/null +++ b/New-Stuff-to-Monika/game/Submods/farewell/farewell_going_backup.rpy @@ -0,0 +1,17 @@ +init 5 python: + addEvent( + Event( + persistent.farewell_database, + eventlabel="bye_prompt_going_backup", + unlocked=True, + prompt="I'm going to backup you.", + pool=True + ), + code="BYE" + ) + +label bye_prompt_going_backup: + m 1eub "Okay!" + m 1hua "Thanks [player] that you are going to backup me." + m 1eub "See you soon!" + return "quit" \ No newline at end of file diff --git a/New-Stuff-to-Monika/game/Submods/farewell/farewell_going_to_church.rpy b/New-Stuff-to-Monika/game/Submods/farewell/farewell_going_to_church.rpy new file mode 100644 index 0000000..537af5c --- /dev/null +++ b/New-Stuff-to-Monika/game/Submods/farewell/farewell_going_to_church.rpy @@ -0,0 +1,18 @@ +init 5 python: + addEvent( + Event( + persistent.farewell_database, + eventlabel="bye_prompt_church", + unlocked=True, + prompt="I'm going to the church.", + pool=True + ), + code="BYE" + ) + +label bye_prompt_church: + m 1esb "Oh, so you are going to the church." + m 1hkb "That's perfectly fine." + m 1esb "I hope you can pray well there [player]!" + m 1hsa "See you later." + return "quit" \ No newline at end of file diff --git a/New-Stuff-to-Monika/game/Submods/farewell/farewell_installing_submods.rpy b/New-Stuff-to-Monika/game/Submods/farewell/farewell_installing_submods.rpy new file mode 100644 index 0000000..ce60fb4 --- /dev/null +++ b/New-Stuff-to-Monika/game/Submods/farewell/farewell_installing_submods.rpy @@ -0,0 +1,21 @@ +init 5 python: + addEvent( + Event( + persistent.farewell_database, + eventlabel="bye_prompt_submods", + unlocked=True, + prompt="I'm going to install you a submod.", + pool=True + ), + code="BYE" + ) + +label bye_prompt_submods: + m 1eub "Ok! {w=0.2}" + extend 4eub "But remember, make a backup of me before install it." + m 1hua "See you soon." + return "quit" + + + + \ No newline at end of file diff --git a/New-Stuff-to-Monika/game/Submods/farewell/farewell_modify.rpy b/New-Stuff-to-Monika/game/Submods/farewell/farewell_modify.rpy new file mode 100644 index 0000000..493ade4 --- /dev/null +++ b/New-Stuff-to-Monika/game/Submods/farewell/farewell_modify.rpy @@ -0,0 +1,117 @@ +init 5 python: + addEvent( + Event( + persistent.farewell_database, + eventlabel="bye_prompt_modify", + unlocked=True, + prompt="I'm going to modify something.", + pool=True + ), + code="BYE" + ) + +label bye_prompt_modify: + m 1hua "Oh!" + extend 1hua " What is it not working as expected?" + $ _history_list.pop() + menu: + "Something in your code": + $ _history_list.pop() + menu: + "A Submod": + m 1hua "Is it working?" + $ _history_list.pop() + menu: + "Yes, but not as expected.": + m 1hua "I hope you can fix it." + m 1hua "See you later." + return "quit" + "No, it isn't working at all!": + m 1hua "I'm sorry to hear that" + extend hua " I hope you can cope with it." + m 1hua "See you later." + return "quit" + "Yes, it's only a modifcation.": + m 1hua "Ok, I'll keep it in mind." + m 1hua "See you later." + return "quit" + "A Sprite Pack": + m 1hua "Is it working?" + $ _history_list.pop() + menu: + "Yes, but not as expected.": + m 1hua "I hope you can fix it." + m 1hua "See you later." + return "quit" + "No, it isn't working at all!": + m 1hua "I'm sorry to hear that" + extend hua " I hope you can cope with it." + m 1hua "See you later." + return "quit" + "A Location": + m 1hua "Is it working?" + $ _history_list.pop() + menu: + "Yes, but not as expected.": + m 1hua "I hope you can fix it." + m 1hua "See you later." + return "quit" + "No, it isn't working at all!": + m 1hua "I'm sorry to hear that" + extend hua " I hope you can cope with it." + m 1hua "See you later." + return "quit" + "A Dialogue": + m 1hua "Is it working?" + $ _history_list.pop() + menu: + "Yes, but not as expected.": + m 1hua "Oh, what is the problem?" + $ _history_list.pop() + menu: + "There is a typo in the dialogue.": + m 1hua "I hope you can fix it." + m 1hua "See you later." + return "quit" + "There is a missing dialogue.": + m 1hua "I hope you can fix it." + m 1hua "See you later." + return "quit" + "No, it isn't working at all!": + m 1hua "I'm sorry to hear that" + extend hua " I hope you can cope with it." + m 1hua "See you later." + return "quit" + "A Game": + m 1hua "Is it working?" + $ _history_list.pop() + menu: + "Yes, but not as expected.": + m 1hua "I hope you can fix it." + m 1hua "See you later." + return "quit" + "No, it isn't working at all!": + m 1hua "I'm sorry to hear that" + extend hua " I hope you can cope with it." + m 1hua "See you later." + return "quit" + "Something else": + m 1hua "Oh!" + extend 1hua " Can I know the problem?" + $ _history_list.pop() + menu: + "I don't know": + m 1hua "How unfortunate!" + extend 1hua " I'm sorry to hear that." + m 1hua "I hope you will cope with this problem." + m 1hua "Good Luck!" + return "quit" + "I already know": + m 1hua "How unfortunate!" + extend 1hua " Can I know the problem?" + $ _history_list.pop() + menu: + "It will be difficult to explain it...": + m 1hua "Oh! Ok, then..." + m 1hua "Good Luck!" + return "quit" \ No newline at end of file diff --git a/New-Stuff-to-Monika/game/Submods/farewell/yes.rpy b/New-Stuff-to-Monika/game/Submods/farewell/yes.rpy new file mode 100644 index 0000000..dae51b7 --- /dev/null +++ b/New-Stuff-to-Monika/game/Submods/farewell/yes.rpy @@ -0,0 +1,15 @@ +init 5 python: + addEvent( + Event( + persistent.event_database, + eventlabel="byebye", # event label (MUST BE UNIQUE) + category=["."], # list of categories this topic belongs in (These are automatically capitalized) + prompt="bye", # button text + random=True, # True if this topic should appear randomly + pool=True # True if this topic should appear in "Ask a Question" + ) + ) + +label byebye: + m 1esa "." + return "quit" \ No newline at end of file