diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..2a0a942 --- /dev/null +++ b/.gitignore @@ -0,0 +1,8 @@ +log.txt +traceback.txt + +game/saves/* +game/cache/* +*.rpyc +*.rpym +*.rpymc \ No newline at end of file diff --git a/README.md b/README.md index 6864451..59b0840 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,14 @@ # federated-love +## How to play? + +- You can get the executables for it [here](https://downloads.waifuism.life/) +- Or play right now over the browser over [here](https://novel.waifuism.life/) + +## Running from source (or to develop) + +- Download [renpy](https://www.renpy.org/) (We use 8.1, but other versions may work too) +- Clone/Download this repository +- Copy the whole folder into your projects folder + - Example: project.json would be in /home/myuser/RenPyProjects/federated-love +- Select the project and Launch it \ No newline at end of file diff --git a/game/audio/whoosh.mp3 b/game/audio/whoosh.mp3 new file mode 100755 index 0000000..21237e3 Binary files /dev/null and b/game/audio/whoosh.mp3 differ diff --git a/game/chapter2.rpy b/game/chapter2.rpy new file mode 100755 index 0000000..a66154f --- /dev/null +++ b/game/chapter2.rpy @@ -0,0 +1,80 @@ +label chapter2: + + scene fediverse + + + show pleroma smug with dissolve + + "Dialogue and presentation of the fediverse" + + jump exploration + + +label exploration: + + if grumb_played and weeble_played: + menu: + "Where do you want to go?" + "bungle": + jump bungle + "FCE": + jump FCE + "I Want something different": + jump mastodon + + + + + + else: + + menu: + "bungle": + jump bungle + + "FCE": + jump FCE + + + + + +label bungle: + + scene bg bungle + + weeble "Placeholder dialogue" + + python: + weeble_played = True + + jump exploration + + + + +label FCE: + + scene bg FCE + + grumb "Placeholder dialogue" + + python: + grumb_played = True + + jump exploration + + + +label mastodon: + + scene bg mastodon + + grumb "Right on" + + "description of the events" + + jump chapter3 + + + diff --git a/game/chapter3.rpy b/game/chapter3.rpy new file mode 100755 index 0000000..d48c04f --- /dev/null +++ b/game/chapter3.rpy @@ -0,0 +1,7 @@ +label chapter3: + + #this is the ending + + + pause 20.0 + return \ No newline at end of file diff --git a/game/gui.rpy b/game/gui.rpy new file mode 100755 index 0000000..9f5ee34 --- /dev/null +++ b/game/gui.rpy @@ -0,0 +1,474 @@ +################################################################################ +## Initialization +################################################################################ + +## The init offset statement causes the initialization statements in this file +## to run before init statements in any other file. +init offset = -2 + +## Calling gui.init resets the styles to sensible default values, and sets the +## width and height of the game. +init python: + gui.init(1920, 1080) + + + +################################################################################ +## GUI Configuration Variables +################################################################################ + + +## Colors ###################################################################### +## +## The colors of text in the interface. + +## An accent color used throughout the interface to label and highlight text. +define gui.accent_color = '#cc6600' + +## The color used for a text button when it is neither selected nor hovered. +define gui.idle_color = '#aaaaaa' + +## The small color is used for small text, which needs to be brighter/darker to +## achieve the same effect. +define gui.idle_small_color = '#888888' + +## The color that is used for buttons and bars that are hovered. +define gui.hover_color = '#cc6600' + +## The color used for a text button when it is selected but not focused. A +## button is selected if it is the current screen or preference value. +define gui.selected_color = '#555555' + +## The color used for a text button when it cannot be selected. +define gui.insensitive_color = '#aaaaaa7f' + +## Colors used for the portions of bars that are not filled in. These are not +## used directly, but are used when re-generating bar image files. +define gui.muted_color = '#e0a366' +define gui.hover_muted_color = '#eac199' + +## The colors used for dialogue and menu choice text. +define gui.text_color = '#404040' +define gui.interface_text_color = '#404040' + + +## Fonts and Font Sizes ######################################################## + +## The font used for in-game text. +define gui.text_font = "DejaVuSans.ttf" + +## The font used for character names. +define gui.name_text_font = "DejaVuSans.ttf" + +## The font used for out-of-game text. +define gui.interface_text_font = "DejaVuSans.ttf" + +## The size of normal dialogue text. +define gui.text_size = 33 + +## The size of character names. +define gui.name_text_size = 45 + +## The size of text in the game's user interface. +define gui.interface_text_size = 33 + +## The size of labels in the game's user interface. +define gui.label_text_size = 36 + +## The size of text on the notify screen. +define gui.notify_text_size = 24 + +## The size of the game's title. +define gui.title_text_size = 75 + + +## Main and Game Menus ######################################################### + +## The images used for the main and game menus. +define gui.main_menu_background = "gui/main_menu.png" +define gui.game_menu_background = "gui/game_menu.png" + + +## Dialogue #################################################################### +## +## These variables control how dialogue is displayed on the screen one line at a +## time. + +## The height of the textbox containing dialogue. +define gui.textbox_height = 278 + +## The placement of the textbox vertically on the screen. 0.0 is the top, 0.5 is +## center, and 1.0 is the bottom. +define gui.textbox_yalign = 1.0 + + +## The placement of the speaking character's name, relative to the textbox. +## These can be a whole number of pixels from the left or top, or 0.5 to center. +define gui.name_xpos = 360 +define gui.name_ypos = 0 + +## The horizontal alignment of the character's name. This can be 0.0 for left- +## aligned, 0.5 for centered, and 1.0 for right-aligned. +define gui.name_xalign = 0.0 + +## The width, height, and borders of the box containing the character's name, or +## None to automatically size it. +define gui.namebox_width = None +define gui.namebox_height = None + +## The borders of the box containing the character's name, in left, top, right, +## bottom order. +define gui.namebox_borders = Borders(5, 5, 5, 5) + +## If True, the background of the namebox will be tiled, if False, the +## background of the namebox will be scaled. +define gui.namebox_tile = False + + +## The placement of dialogue relative to the textbox. These can be a whole +## number of pixels relative to the left or top side of the textbox, or 0.5 to +## center. +define gui.dialogue_xpos = 402 +define gui.dialogue_ypos = 75 + +## The maximum width of dialogue text, in pixels. +define gui.dialogue_width = 1116 + +## The horizontal alignment of the dialogue text. This can be 0.0 for left- +## aligned, 0.5 for centered, and 1.0 for right-aligned. +define gui.dialogue_text_xalign = 0.0 + + +## Buttons ##################################################################### +## +## These variables, along with the image files in gui/button, control aspects of +## how buttons are displayed. + +## The width and height of a button, in pixels. If None, Ren'Py computes a size. +define gui.button_width = None +define gui.button_height = None + +## The borders on each side of the button, in left, top, right, bottom order. +define gui.button_borders = Borders(6, 6, 6, 6) + +## If True, the background image will be tiled. If False, the background image +## will be linearly scaled. +define gui.button_tile = False + +## The font used by the button. +define gui.button_text_font = gui.interface_text_font + +## The size of the text used by the button. +define gui.button_text_size = gui.interface_text_size + +## The color of button text in various states. +define gui.button_text_idle_color = gui.idle_color +define gui.button_text_hover_color = gui.hover_color +define gui.button_text_selected_color = gui.selected_color +define gui.button_text_insensitive_color = gui.insensitive_color + +## The horizontal alignment of the button text. (0.0 is left, 0.5 is center, 1.0 +## is right). +define gui.button_text_xalign = 0.0 + + +## These variables override settings for different kinds of buttons. Please see +## the gui documentation for the kinds of buttons available, and what each is +## used for. +## +## These customizations are used by the default interface: + +define gui.radio_button_borders = Borders(27, 6, 6, 6) + +define gui.check_button_borders = Borders(27, 6, 6, 6) + +define gui.confirm_button_text_xalign = 0.5 + +define gui.page_button_borders = Borders(15, 6, 15, 6) + +define gui.quick_button_borders = Borders(15, 6, 15, 0) +define gui.quick_button_text_size = 21 +define gui.quick_button_text_idle_color = gui.idle_small_color +define gui.quick_button_text_selected_color = gui.accent_color + +## You can also add your own customizations, by adding properly-named variables. +## For example, you can uncomment the following line to set the width of a +## navigation button. + +# define gui.navigation_button_width = 250 + + +## Choice Buttons ############################################################## +## +## Choice buttons are used in the in-game menus. + +define gui.choice_button_width = 1185 +define gui.choice_button_height = None +define gui.choice_button_tile = False +define gui.choice_button_borders = Borders(150, 8, 150, 8) +define gui.choice_button_text_font = gui.text_font +define gui.choice_button_text_size = gui.text_size +define gui.choice_button_text_xalign = 0.5 +define gui.choice_button_text_idle_color = "#cccccc" +define gui.choice_button_text_hover_color = "#ffffff" +define gui.choice_button_text_insensitive_color = "#444444" + + +## File Slot Buttons ########################################################### +## +## A file slot button is a special kind of button. It contains a thumbnail +## image, and text describing the contents of the save slot. A save slot uses +## image files in gui/button, like the other kinds of buttons. + +## The save slot button. +define gui.slot_button_width = 414 +define gui.slot_button_height = 309 +define gui.slot_button_borders = Borders(15, 15, 15, 15) +define gui.slot_button_text_size = 21 +define gui.slot_button_text_xalign = 0.5 +define gui.slot_button_text_idle_color = gui.idle_small_color +define gui.slot_button_text_selected_idle_color = gui.selected_color +define gui.slot_button_text_selected_hover_color = gui.hover_color + +## The width and height of thumbnails used by the save slots. +define config.thumbnail_width = 384 +define config.thumbnail_height = 216 + +## The number of columns and rows in the grid of save slots. +define gui.file_slot_cols = 3 +define gui.file_slot_rows = 2 + + +## Positioning and Spacing ##################################################### +## +## These variables control the positioning and spacing of various user interface +## elements. + +## The position of the left side of the navigation buttons, relative to the left +## side of the screen. +define gui.navigation_xpos = 60 + +## The vertical position of the skip indicator. +define gui.skip_ypos = 15 + +## The vertical position of the notify screen. +define gui.notify_ypos = 68 + +## The spacing between menu choices. +define gui.choice_spacing = 33 + +## Buttons in the navigation section of the main and game menus. +define gui.navigation_spacing = 6 + +## Controls the amount of spacing between preferences. +define gui.pref_spacing = 15 + +## Controls the amount of spacing between preference buttons. +define gui.pref_button_spacing = 0 + +## The spacing between file page buttons. +define gui.page_spacing = 0 + +## The spacing between file slots. +define gui.slot_spacing = 15 + +## The position of the main menu text. +define gui.main_menu_text_xalign = 1.0 + + +## Frames ###################################################################### +## +## These variables control the look of frames that can contain user interface +## components when an overlay or window is not present. + +## Generic frames. +define gui.frame_borders = Borders(6, 6, 6, 6) + +## The frame that is used as part of the confirm screen. +define gui.confirm_frame_borders = Borders(60, 60, 60, 60) + +## The frame that is used as part of the skip screen. +define gui.skip_frame_borders = Borders(24, 8, 75, 8) + +## The frame that is used as part of the notify screen. +define gui.notify_frame_borders = Borders(24, 8, 60, 8) + +## Should frame backgrounds be tiled? +define gui.frame_tile = False + + +## Bars, Scrollbars, and Sliders ############################################### +## +## These control the look and size of bars, scrollbars, and sliders. +## +## The default GUI only uses sliders and vertical scrollbars. All of the other +## bars are only used in creator-written screens. + +## The height of horizontal bars, scrollbars, and sliders. The width of vertical +## bars, scrollbars, and sliders. +define gui.bar_size = 38 +define gui.scrollbar_size = 18 +define gui.slider_size = 38 + +## True if bar images should be tiled. False if they should be linearly scaled. +define gui.bar_tile = False +define gui.scrollbar_tile = False +define gui.slider_tile = False + +## Horizontal borders. +define gui.bar_borders = Borders(6, 6, 6, 6) +define gui.scrollbar_borders = Borders(6, 6, 6, 6) +define gui.slider_borders = Borders(6, 6, 6, 6) + +## Vertical borders. +define gui.vbar_borders = Borders(6, 6, 6, 6) +define gui.vscrollbar_borders = Borders(6, 6, 6, 6) +define gui.vslider_borders = Borders(6, 6, 6, 6) + +## What to do with unscrollable scrollbars in the gui. "hide" hides them, while +## None shows them. +define gui.unscrollable = "hide" + + +## History ##################################################################### +## +## The history screen displays dialogue that the player has already dismissed. + +## The number of blocks of dialogue history Ren'Py will keep. +define config.history_length = 250 + +## The height of a history screen entry, or None to make the height variable at +## the cost of performance. +define gui.history_height = 210 + +## The position, width, and alignment of the label giving the name of the +## speaking character. +define gui.history_name_xpos = 233 +define gui.history_name_ypos = 0 +define gui.history_name_width = 233 +define gui.history_name_xalign = 1.0 + +## The position, width, and alignment of the dialogue text. +define gui.history_text_xpos = 255 +define gui.history_text_ypos = 3 +define gui.history_text_width = 1110 +define gui.history_text_xalign = 0.0 + + +## NVL-Mode #################################################################### +## +## The NVL-mode screen displays the dialogue spoken by NVL-mode characters. + +## The borders of the background of the NVL-mode background window. +define gui.nvl_borders = Borders(0, 15, 0, 30) + +## The maximum number of NVL-mode entries Ren'Py will display. When more entries +## than this are to be show, the oldest entry will be removed. +define gui.nvl_list_length = 6 + +## The height of an NVL-mode entry. Set this to None to have the entries +## dynamically adjust height. +define gui.nvl_height = 173 + +## The spacing between NVL-mode entries when gui.nvl_height is None, and between +## NVL-mode entries and an NVL-mode menu. +define gui.nvl_spacing = 15 + +## The position, width, and alignment of the label giving the name of the +## speaking character. +define gui.nvl_name_xpos = 645 +define gui.nvl_name_ypos = 0 +define gui.nvl_name_width = 225 +define gui.nvl_name_xalign = 1.0 + +## The position, width, and alignment of the dialogue text. +define gui.nvl_text_xpos = 675 +define gui.nvl_text_ypos = 12 +define gui.nvl_text_width = 885 +define gui.nvl_text_xalign = 0.0 + +## The position, width, and alignment of nvl_thought text (the text said by the +## nvl_narrator character.) +define gui.nvl_thought_xpos = 360 +define gui.nvl_thought_ypos = 0 +define gui.nvl_thought_width = 1170 +define gui.nvl_thought_xalign = 0.0 + +## The position of nvl menu_buttons. +define gui.nvl_button_xpos = 675 +define gui.nvl_button_xalign = 0.0 + +## Localization ################################################################ + +## This controls where a line break is permitted. The default is suitable +## for most languages. A list of available values can be found at https:// +## www.renpy.org/doc/html/style_properties.html#style-property-language + +define gui.language = "unicode" + + +################################################################################ +## Mobile devices +################################################################################ + +init python: + + ## This increases the size of the quick buttons to make them easier to touch + ## on tablets and phones. + @gui.variant + def touch(): + + gui.quick_button_borders = Borders(60, 21, 60, 0) + + ## This changes the size and spacing of various GUI elements to ensure they + ## are easily visible on phones. + @gui.variant + def small(): + + ## Font sizes. + gui.text_size = 45 + gui.name_text_size = 54 + gui.notify_text_size = 38 + gui.interface_text_size = 45 + gui.button_text_size = 45 + gui.label_text_size = 51 + + ## Adjust the location of the textbox. + gui.textbox_height = 360 + gui.name_xpos = 120 + gui.dialogue_xpos = 135 + gui.dialogue_width = 1650 + + ## Change the size and spacing of various things. + gui.slider_size = 54 + + gui.choice_button_width = 1860 + gui.choice_button_text_size = 45 + + gui.navigation_spacing = 30 + gui.pref_button_spacing = 15 + + gui.history_height = 285 + gui.history_text_width = 1035 + + gui.quick_button_text_size = 30 + + ## File button layout. + gui.file_slot_cols = 2 + gui.file_slot_rows = 2 + + ## NVL-mode. + gui.nvl_height = 255 + + gui.nvl_name_width = 458 + gui.nvl_name_xpos = 488 + + gui.nvl_text_width = 1373 + gui.nvl_text_xpos = 518 + gui.nvl_text_ypos = 8 + + gui.nvl_thought_width = 1860 + gui.nvl_thought_xpos = 30 + + gui.nvl_button_width = 1860 + gui.nvl_button_xpos = 30 diff --git a/game/gui/bar/bottom.png b/game/gui/bar/bottom.png new file mode 100755 index 0000000..b38ea4f Binary files /dev/null and b/game/gui/bar/bottom.png differ diff --git a/game/gui/bar/left.png b/game/gui/bar/left.png new file mode 100755 index 0000000..aa54c1b Binary files /dev/null and b/game/gui/bar/left.png differ diff --git a/game/gui/bar/right.png b/game/gui/bar/right.png new file mode 100755 index 0000000..a7de781 Binary files /dev/null and b/game/gui/bar/right.png differ diff --git a/game/gui/bar/top.png b/game/gui/bar/top.png new file mode 100755 index 0000000..b7e188e Binary files /dev/null and b/game/gui/bar/top.png differ diff --git a/game/gui/button/check_foreground.png b/game/gui/button/check_foreground.png new file mode 100755 index 0000000..4113f1a Binary files /dev/null and b/game/gui/button/check_foreground.png differ diff --git a/game/gui/button/check_selected_foreground.png b/game/gui/button/check_selected_foreground.png new file mode 100755 index 0000000..caa3c62 Binary files /dev/null and b/game/gui/button/check_selected_foreground.png differ diff --git a/game/gui/button/choice_hover_background.png b/game/gui/button/choice_hover_background.png new file mode 100755 index 0000000..3f5b845 Binary files /dev/null and b/game/gui/button/choice_hover_background.png differ diff --git a/game/gui/button/choice_idle_background.png b/game/gui/button/choice_idle_background.png new file mode 100755 index 0000000..0b43428 Binary files /dev/null and b/game/gui/button/choice_idle_background.png differ diff --git a/game/gui/button/hover_background.png b/game/gui/button/hover_background.png new file mode 100755 index 0000000..266d53b Binary files /dev/null and b/game/gui/button/hover_background.png differ diff --git a/game/gui/button/idle_background.png b/game/gui/button/idle_background.png new file mode 100755 index 0000000..266d53b Binary files /dev/null and b/game/gui/button/idle_background.png differ diff --git a/game/gui/button/quick_hover_background.png b/game/gui/button/quick_hover_background.png new file mode 100755 index 0000000..0ecc7c9 Binary files /dev/null and b/game/gui/button/quick_hover_background.png differ diff --git a/game/gui/button/quick_idle_background.png b/game/gui/button/quick_idle_background.png new file mode 100755 index 0000000..0ecc7c9 Binary files /dev/null and b/game/gui/button/quick_idle_background.png differ diff --git a/game/gui/button/radio_foreground.png b/game/gui/button/radio_foreground.png new file mode 100755 index 0000000..4113f1a Binary files /dev/null and b/game/gui/button/radio_foreground.png differ diff --git a/game/gui/button/radio_selected_foreground.png b/game/gui/button/radio_selected_foreground.png new file mode 100755 index 0000000..caa3c62 Binary files /dev/null and b/game/gui/button/radio_selected_foreground.png differ diff --git a/game/gui/button/slot_hover_background.png b/game/gui/button/slot_hover_background.png new file mode 100755 index 0000000..8e70b0c Binary files /dev/null and b/game/gui/button/slot_hover_background.png differ diff --git a/game/gui/button/slot_idle_background.png b/game/gui/button/slot_idle_background.png new file mode 100755 index 0000000..82f5dc3 Binary files /dev/null and b/game/gui/button/slot_idle_background.png differ diff --git a/game/gui/frame.png b/game/gui/frame.png new file mode 100755 index 0000000..67bbafd Binary files /dev/null and b/game/gui/frame.png differ diff --git a/game/gui/game_menu.png b/game/gui/game_menu.png new file mode 100755 index 0000000..672b82f Binary files /dev/null and b/game/gui/game_menu.png differ diff --git a/game/gui/main_menu.png b/game/gui/main_menu.png new file mode 100755 index 0000000..d85f661 Binary files /dev/null and b/game/gui/main_menu.png differ diff --git a/game/gui/namebox.png b/game/gui/namebox.png new file mode 100755 index 0000000..c24135c Binary files /dev/null and b/game/gui/namebox.png differ diff --git a/game/gui/notify.png b/game/gui/notify.png new file mode 100755 index 0000000..03e071a Binary files /dev/null and b/game/gui/notify.png differ diff --git a/game/gui/nvl.png b/game/gui/nvl.png new file mode 100755 index 0000000..92e7afa Binary files /dev/null and b/game/gui/nvl.png differ diff --git a/game/gui/overlay/confirm.png b/game/gui/overlay/confirm.png new file mode 100755 index 0000000..0ff98f5 Binary files /dev/null and b/game/gui/overlay/confirm.png differ diff --git a/game/gui/overlay/game_menu.png b/game/gui/overlay/game_menu.png new file mode 100755 index 0000000..d02e336 Binary files /dev/null and b/game/gui/overlay/game_menu.png differ diff --git a/game/gui/overlay/main_menu - Copy.png b/game/gui/overlay/main_menu - Copy.png new file mode 100755 index 0000000..141fed9 Binary files /dev/null and b/game/gui/overlay/main_menu - Copy.png differ diff --git a/game/gui/overlay/main_menu.png b/game/gui/overlay/main_menu.png new file mode 100755 index 0000000..3e2cb42 Binary files /dev/null and b/game/gui/overlay/main_menu.png differ diff --git a/game/gui/phone/bar/bottom.png b/game/gui/phone/bar/bottom.png new file mode 100755 index 0000000..b38ea4f Binary files /dev/null and b/game/gui/phone/bar/bottom.png differ diff --git a/game/gui/phone/bar/left.png b/game/gui/phone/bar/left.png new file mode 100755 index 0000000..aa54c1b Binary files /dev/null and b/game/gui/phone/bar/left.png differ diff --git a/game/gui/phone/bar/right.png b/game/gui/phone/bar/right.png new file mode 100755 index 0000000..a7de781 Binary files /dev/null and b/game/gui/phone/bar/right.png differ diff --git a/game/gui/phone/bar/top.png b/game/gui/phone/bar/top.png new file mode 100755 index 0000000..b7e188e Binary files /dev/null and b/game/gui/phone/bar/top.png differ diff --git a/game/gui/phone/button/check_foreground.png b/game/gui/phone/button/check_foreground.png new file mode 100755 index 0000000..c334a43 Binary files /dev/null and b/game/gui/phone/button/check_foreground.png differ diff --git a/game/gui/phone/button/check_selected_foreground.png b/game/gui/phone/button/check_selected_foreground.png new file mode 100755 index 0000000..ee5c847 Binary files /dev/null and b/game/gui/phone/button/check_selected_foreground.png differ diff --git a/game/gui/phone/button/choice_hover_background.png b/game/gui/phone/button/choice_hover_background.png new file mode 100755 index 0000000..3f5b845 Binary files /dev/null and b/game/gui/phone/button/choice_hover_background.png differ diff --git a/game/gui/phone/button/choice_idle_background.png b/game/gui/phone/button/choice_idle_background.png new file mode 100755 index 0000000..0b43428 Binary files /dev/null and b/game/gui/phone/button/choice_idle_background.png differ diff --git a/game/gui/phone/button/hover_background.png b/game/gui/phone/button/hover_background.png new file mode 100755 index 0000000..6264b8b Binary files /dev/null and b/game/gui/phone/button/hover_background.png differ diff --git a/game/gui/phone/button/idle_background.png b/game/gui/phone/button/idle_background.png new file mode 100755 index 0000000..6264b8b Binary files /dev/null and b/game/gui/phone/button/idle_background.png differ diff --git a/game/gui/phone/button/radio_foreground.png b/game/gui/phone/button/radio_foreground.png new file mode 100755 index 0000000..c334a43 Binary files /dev/null and b/game/gui/phone/button/radio_foreground.png differ diff --git a/game/gui/phone/button/radio_selected_foreground.png b/game/gui/phone/button/radio_selected_foreground.png new file mode 100755 index 0000000..ee5c847 Binary files /dev/null and b/game/gui/phone/button/radio_selected_foreground.png differ diff --git a/game/gui/phone/button/slot_hover_background.png b/game/gui/phone/button/slot_hover_background.png new file mode 100755 index 0000000..8e70b0c Binary files /dev/null and b/game/gui/phone/button/slot_hover_background.png differ diff --git a/game/gui/phone/button/slot_idle_background.png b/game/gui/phone/button/slot_idle_background.png new file mode 100755 index 0000000..82f5dc3 Binary files /dev/null and b/game/gui/phone/button/slot_idle_background.png differ diff --git a/game/gui/phone/nvl.png b/game/gui/phone/nvl.png new file mode 100755 index 0000000..64afe88 Binary files /dev/null and b/game/gui/phone/nvl.png differ diff --git a/game/gui/phone/overlay/game_menu.png b/game/gui/phone/overlay/game_menu.png new file mode 100755 index 0000000..03d824f Binary files /dev/null and b/game/gui/phone/overlay/game_menu.png differ diff --git a/game/gui/phone/overlay/main_menu.png b/game/gui/phone/overlay/main_menu.png new file mode 100755 index 0000000..c9952c3 Binary files /dev/null and b/game/gui/phone/overlay/main_menu.png differ diff --git a/game/gui/phone/scrollbar/horizontal_hover_bar.png b/game/gui/phone/scrollbar/horizontal_hover_bar.png new file mode 100755 index 0000000..f79f12b Binary files /dev/null and b/game/gui/phone/scrollbar/horizontal_hover_bar.png differ diff --git a/game/gui/phone/scrollbar/horizontal_hover_thumb.png b/game/gui/phone/scrollbar/horizontal_hover_thumb.png new file mode 100755 index 0000000..a2f04d3 Binary files /dev/null and b/game/gui/phone/scrollbar/horizontal_hover_thumb.png differ diff --git a/game/gui/phone/scrollbar/horizontal_idle_bar.png b/game/gui/phone/scrollbar/horizontal_idle_bar.png new file mode 100755 index 0000000..4ad3a4d Binary files /dev/null and b/game/gui/phone/scrollbar/horizontal_idle_bar.png differ diff --git a/game/gui/phone/scrollbar/horizontal_idle_thumb.png b/game/gui/phone/scrollbar/horizontal_idle_thumb.png new file mode 100755 index 0000000..a2f04d3 Binary files /dev/null and b/game/gui/phone/scrollbar/horizontal_idle_thumb.png differ diff --git a/game/gui/phone/scrollbar/vertical_hover_bar.png b/game/gui/phone/scrollbar/vertical_hover_bar.png new file mode 100755 index 0000000..f044cc7 Binary files /dev/null and b/game/gui/phone/scrollbar/vertical_hover_bar.png differ diff --git a/game/gui/phone/scrollbar/vertical_hover_thumb.png b/game/gui/phone/scrollbar/vertical_hover_thumb.png new file mode 100755 index 0000000..e7c2c27 Binary files /dev/null and b/game/gui/phone/scrollbar/vertical_hover_thumb.png differ diff --git a/game/gui/phone/scrollbar/vertical_idle_bar.png b/game/gui/phone/scrollbar/vertical_idle_bar.png new file mode 100755 index 0000000..4e4fecd Binary files /dev/null and b/game/gui/phone/scrollbar/vertical_idle_bar.png differ diff --git a/game/gui/phone/scrollbar/vertical_idle_thumb.png b/game/gui/phone/scrollbar/vertical_idle_thumb.png new file mode 100755 index 0000000..e7c2c27 Binary files /dev/null and b/game/gui/phone/scrollbar/vertical_idle_thumb.png differ diff --git a/game/gui/phone/slider/horizontal_hover_bar.png b/game/gui/phone/slider/horizontal_hover_bar.png new file mode 100755 index 0000000..0f47001 Binary files /dev/null and b/game/gui/phone/slider/horizontal_hover_bar.png differ diff --git a/game/gui/phone/slider/horizontal_hover_thumb.png b/game/gui/phone/slider/horizontal_hover_thumb.png new file mode 100755 index 0000000..f817694 Binary files /dev/null and b/game/gui/phone/slider/horizontal_hover_thumb.png differ diff --git a/game/gui/phone/slider/horizontal_idle_bar.png b/game/gui/phone/slider/horizontal_idle_bar.png new file mode 100755 index 0000000..b15d6db Binary files /dev/null and b/game/gui/phone/slider/horizontal_idle_bar.png differ diff --git a/game/gui/phone/slider/horizontal_idle_thumb.png b/game/gui/phone/slider/horizontal_idle_thumb.png new file mode 100755 index 0000000..f817694 Binary files /dev/null and b/game/gui/phone/slider/horizontal_idle_thumb.png differ diff --git a/game/gui/phone/slider/vertical_hover_bar.png b/game/gui/phone/slider/vertical_hover_bar.png new file mode 100755 index 0000000..f8d92a3 Binary files /dev/null and b/game/gui/phone/slider/vertical_hover_bar.png differ diff --git a/game/gui/phone/slider/vertical_hover_thumb.png b/game/gui/phone/slider/vertical_hover_thumb.png new file mode 100755 index 0000000..72d3dc6 Binary files /dev/null and b/game/gui/phone/slider/vertical_hover_thumb.png differ diff --git a/game/gui/phone/slider/vertical_idle_bar.png b/game/gui/phone/slider/vertical_idle_bar.png new file mode 100755 index 0000000..1f898cc Binary files /dev/null and b/game/gui/phone/slider/vertical_idle_bar.png differ diff --git a/game/gui/phone/slider/vertical_idle_thumb.png b/game/gui/phone/slider/vertical_idle_thumb.png new file mode 100755 index 0000000..72d3dc6 Binary files /dev/null and b/game/gui/phone/slider/vertical_idle_thumb.png differ diff --git a/game/gui/phone/textbox.png b/game/gui/phone/textbox.png new file mode 100755 index 0000000..7eb4c0c Binary files /dev/null and b/game/gui/phone/textbox.png differ diff --git a/game/gui/scrollbar/horizontal_hover_bar.png b/game/gui/scrollbar/horizontal_hover_bar.png new file mode 100755 index 0000000..f79f12b Binary files /dev/null and b/game/gui/scrollbar/horizontal_hover_bar.png differ diff --git a/game/gui/scrollbar/horizontal_hover_thumb.png b/game/gui/scrollbar/horizontal_hover_thumb.png new file mode 100755 index 0000000..a2f04d3 Binary files /dev/null and b/game/gui/scrollbar/horizontal_hover_thumb.png differ diff --git a/game/gui/scrollbar/horizontal_idle_bar.png b/game/gui/scrollbar/horizontal_idle_bar.png new file mode 100755 index 0000000..4ad3a4d Binary files /dev/null and b/game/gui/scrollbar/horizontal_idle_bar.png differ diff --git a/game/gui/scrollbar/horizontal_idle_thumb.png b/game/gui/scrollbar/horizontal_idle_thumb.png new file mode 100755 index 0000000..a2f04d3 Binary files /dev/null and b/game/gui/scrollbar/horizontal_idle_thumb.png differ diff --git a/game/gui/scrollbar/vertical_hover_bar.png b/game/gui/scrollbar/vertical_hover_bar.png new file mode 100755 index 0000000..f044cc7 Binary files /dev/null and b/game/gui/scrollbar/vertical_hover_bar.png differ diff --git a/game/gui/scrollbar/vertical_hover_thumb.png b/game/gui/scrollbar/vertical_hover_thumb.png new file mode 100755 index 0000000..e7c2c27 Binary files /dev/null and b/game/gui/scrollbar/vertical_hover_thumb.png differ diff --git a/game/gui/scrollbar/vertical_idle_bar.png b/game/gui/scrollbar/vertical_idle_bar.png new file mode 100755 index 0000000..4e4fecd Binary files /dev/null and b/game/gui/scrollbar/vertical_idle_bar.png differ diff --git a/game/gui/scrollbar/vertical_idle_thumb.png b/game/gui/scrollbar/vertical_idle_thumb.png new file mode 100755 index 0000000..e7c2c27 Binary files /dev/null and b/game/gui/scrollbar/vertical_idle_thumb.png differ diff --git a/game/gui/skip.png b/game/gui/skip.png new file mode 100755 index 0000000..104092a Binary files /dev/null and b/game/gui/skip.png differ diff --git a/game/gui/slider/horizontal_hover_bar.png b/game/gui/slider/horizontal_hover_bar.png new file mode 100755 index 0000000..926c829 Binary files /dev/null and b/game/gui/slider/horizontal_hover_bar.png differ diff --git a/game/gui/slider/horizontal_hover_thumb.png b/game/gui/slider/horizontal_hover_thumb.png new file mode 100755 index 0000000..a93e3fc Binary files /dev/null and b/game/gui/slider/horizontal_hover_thumb.png differ diff --git a/game/gui/slider/horizontal_idle_bar.png b/game/gui/slider/horizontal_idle_bar.png new file mode 100755 index 0000000..a7de781 Binary files /dev/null and b/game/gui/slider/horizontal_idle_bar.png differ diff --git a/game/gui/slider/horizontal_idle_thumb.png b/game/gui/slider/horizontal_idle_thumb.png new file mode 100755 index 0000000..a93e3fc Binary files /dev/null and b/game/gui/slider/horizontal_idle_thumb.png differ diff --git a/game/gui/slider/vertical_hover_bar.png b/game/gui/slider/vertical_hover_bar.png new file mode 100755 index 0000000..1c53c3f Binary files /dev/null and b/game/gui/slider/vertical_hover_bar.png differ diff --git a/game/gui/slider/vertical_hover_thumb.png b/game/gui/slider/vertical_hover_thumb.png new file mode 100755 index 0000000..8cd9860 Binary files /dev/null and b/game/gui/slider/vertical_hover_thumb.png differ diff --git a/game/gui/slider/vertical_idle_bar.png b/game/gui/slider/vertical_idle_bar.png new file mode 100755 index 0000000..b7e188e Binary files /dev/null and b/game/gui/slider/vertical_idle_bar.png differ diff --git a/game/gui/slider/vertical_idle_thumb.png b/game/gui/slider/vertical_idle_thumb.png new file mode 100755 index 0000000..8cd9860 Binary files /dev/null and b/game/gui/slider/vertical_idle_thumb.png differ diff --git a/game/gui/textbox.png b/game/gui/textbox.png new file mode 100755 index 0000000..9867924 Binary files /dev/null and b/game/gui/textbox.png differ diff --git a/game/gui/window_icon.png b/game/gui/window_icon.png new file mode 100755 index 0000000..21065be Binary files /dev/null and b/game/gui/window_icon.png differ diff --git a/game/images/pleroma hands grin.png b/game/images/pleroma hands grin.png new file mode 100755 index 0000000..001e104 Binary files /dev/null and b/game/images/pleroma hands grin.png differ diff --git a/game/images/pleroma handup talk.png b/game/images/pleroma handup talk.png new file mode 100755 index 0000000..a84bdd7 Binary files /dev/null and b/game/images/pleroma handup talk.png differ diff --git a/game/images/pleroma handup.png b/game/images/pleroma handup.png new file mode 100755 index 0000000..32d334e Binary files /dev/null and b/game/images/pleroma handup.png differ diff --git a/game/images/pleroma normal smug talk.png b/game/images/pleroma normal smug talk.png new file mode 100755 index 0000000..31b6877 Binary files /dev/null and b/game/images/pleroma normal smug talk.png differ diff --git a/game/images/pleroma normal smug.png b/game/images/pleroma normal smug.png new file mode 100755 index 0000000..74f19c9 Binary files /dev/null and b/game/images/pleroma normal smug.png differ diff --git a/game/images/pleroma normal talk.png b/game/images/pleroma normal talk.png new file mode 100755 index 0000000..e3d754d Binary files /dev/null and b/game/images/pleroma normal talk.png differ diff --git a/game/images/pleroma normal talk2.png b/game/images/pleroma normal talk2.png new file mode 100755 index 0000000..61e9302 Binary files /dev/null and b/game/images/pleroma normal talk2.png differ diff --git a/game/images/pleroma normal.png b/game/images/pleroma normal.png new file mode 100755 index 0000000..32ec495 Binary files /dev/null and b/game/images/pleroma normal.png differ diff --git a/game/images/pleroma smug.png b/game/images/pleroma smug.png new file mode 100755 index 0000000..83861f2 Binary files /dev/null and b/game/images/pleroma smug.png differ diff --git a/game/options.rpy b/game/options.rpy new file mode 100755 index 0000000..41fac95 --- /dev/null +++ b/game/options.rpy @@ -0,0 +1,210 @@ +## This file contains options that can be changed to customize your game. +## +## Lines beginning with two '#' marks are comments, and you shouldn't uncomment +## them. Lines beginning with a single '#' mark are commented-out code, and you +## may want to uncomment them when appropriate. + + +## Basics ###################################################################### + +## A human-readable name of the game. This is used to set the default window +## title, and shows up in the interface and error reports. +## +## The _() surrounding the string marks it as eligible for translation. + +define config.name = _("Federated love: I can\'t believe my instance is this cute!") + + +## Determines if the title given above is shown on the main menu screen. Set +## this to False to hide the title. + +define gui.show_name = False + + +## The version of the game. + +define config.version = "0.3" + + +## Text that is placed on the game's about screen. Place the text between the +## triple-quotes, and leave a blank line between paragraphs. + +define gui.about = _p(""" +""") + + +## A short name for the game used for executables and directories in the built +## distribution. This must be ASCII-only, and must not contain spaces, colons, +## or semicolons. + +define build.name = "fedivn" + + +## Sounds and music ############################################################ + +## These three variables control, among other things, which mixers are shown +## to the player by default. Setting one of these to False will hide the +## appropriate mixer. + +define config.has_sound = True +define config.has_music = True +define config.has_voice = True + + +## To allow the user to play a test sound on the sound or voice channel, +## uncomment a line below and use it to set a sample sound to play. + +# define config.sample_sound = "sample-sound.ogg" +# define config.sample_voice = "sample-voice.ogg" + + +## Uncomment the following line to set an audio file that will be played while +## the player is at the main menu. This file will continue playing into the +## game, until it is stopped or another file is played. + +define config.main_menu_music = "audio/main-menu.mp3" +define config.main_menu_music_fadein = 7.0 + + +## Transitions ################################################################# +## +## These variables set transitions that are used when certain events occur. +## Each variable should be set to a transition, or None to indicate that no +## transition should be used. + +## Entering or exiting the game menu. + +define config.enter_transition = dissolve +define config.exit_transition = dissolve + + +## Between screens of the game menu. + +define config.intra_transition = dissolve + + +## A transition that is used after a game has been loaded. + +define config.after_load_transition = None + + +## Used when entering the main menu after the game has ended. + +define config.end_game_transition = dissolve + + +## A variable to set the transition used when the game starts does not exist. +## Instead, use a with statement after showing the initial scene. + + +## Window management ########################################################### +## +## This controls when the dialogue window is displayed. If "show", it is always +## displayed. If "hide", it is only displayed when dialogue is present. If +## "auto", the window is hidden before scene statements and shown again once +## dialogue is displayed. +## +## After the game has started, this can be changed with the "window show", +## "window hide", and "window auto" statements. + +define config.window = "auto" + + +## Transitions used to show and hide the dialogue window + +define config.window_show_transition = Dissolve(.2) +define config.window_hide_transition = Dissolve(.2) + + +## Preference defaults ######################################################### + +## Controls the default text speed. The default, 0, is infinite, while any other +## number is the number of characters per second to type out. + +default preferences.text_cps = 0 + + +## The default auto-forward delay. Larger numbers lead to longer waits, with 0 +## to 30 being the valid range. + +default preferences.afm_time = 15 + + +## Save directory ############################################################## +## +## Controls the platform-specific place Ren'Py will place the save files for +## this game. The save files will be placed in: +## +## Windows: %APPDATA\RenPy\ +## +## Macintosh: $HOME/Library/RenPy/ +## +## Linux: $HOME/.renpy/ +## +## This generally should not be changed, and if it is, should always be a +## literal string, not an expression. + +define config.save_directory = "fedivn-1660136669" + + +## Icon ######################################################################## +## +## The icon displayed on the taskbar or dock. + +define config.window_icon = "gui/window_icon.png" + + +## Build configuration ######################################################### +## +## This section controls how Ren'Py turns your project into distribution files. + +init python: + + ## The following functions take file patterns. File patterns are case- + ## insensitive, and matched against the path relative to the base directory, + ## with and without a leading /. If multiple patterns match, the first is + ## used. + ## + ## In a pattern: + ## + ## / is the directory separator. + ## + ## * matches all characters, except the directory separator. + ## + ## ** matches all characters, including the directory separator. + ## + ## For example, "*.txt" matches txt files in the base directory, "game/ + ## **.ogg" matches ogg files in the game directory or any of its + ## subdirectories, and "**.psd" matches psd files anywhere in the project. + + ## Classify files as None to exclude them from the built distributions. + + build.classify('**~', None) + build.classify('**.bak', None) + build.classify('**/.**', None) + build.classify('**/#**', None) + build.classify('**/thumbs.db', None) + + ## To archive files, classify them as 'archive'. + + # build.classify('game/**.png', 'archive') + # build.classify('game/**.jpg', 'archive') + + ## Files matching documentation patterns are duplicated in a mac app build, + ## so they appear in both the app and the zip file. + + build.documentation('*.html') + build.documentation('*.txt') + + +## A Google Play license key is required to download expansion files and perform +## in-app purchases. It can be found on the "Services & APIs" page of the Google +## Play developer console. + +# define build.google_play_key = "..." + + +## The username and project name associated with an itch.io project, separated +## by a slash. + +# define build.itch_project = "renpytom/test-project" diff --git a/game/screens.rpy b/game/screens.rpy new file mode 100755 index 0000000..ed4f706 --- /dev/null +++ b/game/screens.rpy @@ -0,0 +1,1514 @@ +################################################################################ +## Initialization +################################################################################ + +init offset = -1 + + +################################################################################ +## Styles +################################################################################ + +style default: + properties gui.text_properties() + language gui.language + +style input: + properties gui.text_properties("input", accent=True) + adjust_spacing False + +style hyperlink_text: + properties gui.text_properties("hyperlink", accent=True) + hover_underline True + +style gui_text: + properties gui.text_properties("interface") + + +style button: + properties gui.button_properties("button") + +style button_text is gui_text: + properties gui.text_properties("button") + yalign 0.5 + + +style label_text is gui_text: + properties gui.text_properties("label", accent=True) + +style prompt_text is gui_text: + properties gui.text_properties("prompt") + + +style bar: + ysize gui.bar_size + left_bar Frame("gui/bar/left.png", gui.bar_borders, tile=gui.bar_tile) + right_bar Frame("gui/bar/right.png", gui.bar_borders, tile=gui.bar_tile) + +style vbar: + xsize gui.bar_size + top_bar Frame("gui/bar/top.png", gui.vbar_borders, tile=gui.bar_tile) + bottom_bar Frame("gui/bar/bottom.png", gui.vbar_borders, tile=gui.bar_tile) + +style scrollbar: + ysize gui.scrollbar_size + base_bar Frame("gui/scrollbar/horizontal_[prefix_]bar.png", gui.scrollbar_borders, tile=gui.scrollbar_tile) + thumb Frame("gui/scrollbar/horizontal_[prefix_]thumb.png", gui.scrollbar_borders, tile=gui.scrollbar_tile) + +style vscrollbar: + xsize gui.scrollbar_size + base_bar Frame("gui/scrollbar/vertical_[prefix_]bar.png", gui.vscrollbar_borders, tile=gui.scrollbar_tile) + thumb Frame("gui/scrollbar/vertical_[prefix_]thumb.png", gui.vscrollbar_borders, tile=gui.scrollbar_tile) + +style slider: + ysize gui.slider_size + base_bar Frame("gui/slider/horizontal_[prefix_]bar.png", gui.slider_borders, tile=gui.slider_tile) + thumb "gui/slider/horizontal_[prefix_]thumb.png" + +style vslider: + xsize gui.slider_size + base_bar Frame("gui/slider/vertical_[prefix_]bar.png", gui.vslider_borders, tile=gui.slider_tile) + thumb "gui/slider/vertical_[prefix_]thumb.png" + + +style frame: + padding gui.frame_borders.padding + background Frame("gui/frame.png", gui.frame_borders, tile=gui.frame_tile) + + + +################################################################################ +## In-game screens +################################################################################ + + +## Say screen ################################################################## +## +## The say screen is used to display dialogue to the player. It takes two +## parameters, who and what, which are the name of the speaking character and +## the text to be displayed, respectively. (The who parameter can be None if no +## name is given.) +## +## This screen must create a text displayable with id "what", as Ren'Py uses +## this to manage text display. It can also create displayables with id "who" +## and id "window" to apply style properties. +## +## https://www.renpy.org/doc/html/screen_special.html#say + +screen say(who, what): + style_prefix "say" + + window: + id "window" + + if who is not None: + + window: + id "namebox" + style "namebox" + text who id "who" + + text what id "what" + + + ## If there's a side image, display it above the text. Do not display on the + ## phone variant - there's no room. + if not renpy.variant("small"): + add SideImage() xalign 0.0 yalign 1.0 + + +## Make the namebox available for styling through the Character object. +init python: + config.character_id_prefixes.append('namebox') + +style window is default +style say_label is default +style say_dialogue is default +style say_thought is say_dialogue + +style namebox is default +style namebox_label is say_label + + +style window: + xalign 0.5 + xfill True + yalign gui.textbox_yalign + ysize gui.textbox_height + + background Image("gui/textbox.png", xalign=0.5, yalign=1.0) + +style namebox: + xpos gui.name_xpos + xanchor gui.name_xalign + xsize gui.namebox_width + ypos gui.name_ypos + ysize gui.namebox_height + + background Frame("gui/namebox.png", gui.namebox_borders, tile=gui.namebox_tile, xalign=gui.name_xalign) + padding gui.namebox_borders.padding + +style say_label: + properties gui.text_properties("name", accent=True) + xalign gui.name_xalign + yalign 0.5 + +style say_dialogue: + properties gui.text_properties("dialogue") + + xpos gui.dialogue_xpos + xsize gui.dialogue_width + ypos gui.dialogue_ypos + + adjust_spacing False + +## Input screen ################################################################ +## +## This screen is used to display renpy.input. The prompt parameter is used to +## pass a text prompt in. +## +## This screen must create an input displayable with id "input" to accept the +## various input parameters. +## +## https://www.renpy.org/doc/html/screen_special.html#input + +screen input(prompt): + style_prefix "input" + + window: + + vbox: + xalign gui.dialogue_text_xalign + xpos gui.dialogue_xpos + xsize gui.dialogue_width + ypos gui.dialogue_ypos + + text prompt style "input_prompt" + input id "input" + +style input_prompt is default + +style input_prompt: + xalign gui.dialogue_text_xalign + properties gui.text_properties("input_prompt") + +style input: + xalign gui.dialogue_text_xalign + xmaximum gui.dialogue_width + + +## Choice screen ############################################################### +## +## This screen is used to display the in-game choices presented by the menu +## statement. The one parameter, items, is a list of objects, each with caption +## and action fields. +## +## https://www.renpy.org/doc/html/screen_special.html#choice + +screen choice(items): + style_prefix "choice" + + vbox: + for i in items: + textbutton i.caption action i.action + + +style choice_vbox is vbox +style choice_button is button +style choice_button_text is button_text + +style choice_vbox: + xalign 0.5 + ypos 405 + yanchor 0.5 + + spacing gui.choice_spacing + +style choice_button is default: + properties gui.button_properties("choice_button") + +style choice_button_text is default: + properties gui.button_text_properties("choice_button") + + +## Quick Menu screen ########################################################### +## +## The quick menu is displayed in-game to provide easy access to the out-of-game +## menus. + +screen quick_menu(): + + ## Ensure this appears on top of other screens. + zorder 100 + + if quick_menu: + + hbox: + style_prefix "quick" + + xalign 0.5 + yalign 1.0 + + textbutton _("Back") action Rollback() + textbutton _("History") action ShowMenu('history') + textbutton _("Skip") action Skip() alternate Skip(fast=True, confirm=True) + textbutton _("Auto") action Preference("auto-forward", "toggle") + textbutton _("Save") action ShowMenu('save') + textbutton _("Q.Save") action QuickSave() + textbutton _("Q.Load") action QuickLoad() + textbutton _("Prefs") action ShowMenu('preferences') + + +## This code ensures that the quick_menu screen is displayed in-game, whenever +## the player has not explicitly hidden the interface. +init python: + config.overlay_screens.append("quick_menu") + +default quick_menu = True + +style quick_button is default +style quick_button_text is button_text + +style quick_button: + properties gui.button_properties("quick_button") + +style quick_button_text: + properties gui.button_text_properties("quick_button") + + +################################################################################ +## Main and Game Menu Screens +################################################################################ + +## Navigation screen ########################################################### +## +## This screen is included in the main and game menus, and provides navigation +## to other menus, and to start the game. + +screen navigation(): + + vbox: + style_prefix "navigation" + + xpos gui.navigation_xpos + yalign 0.5 + + spacing gui.navigation_spacing + + if main_menu: + + textbutton _("Start") action Start() + + else: + + textbutton _("History") action ShowMenu("history") + + textbutton _("Save") action ShowMenu("save") + + textbutton _("Load") action ShowMenu("load") + + textbutton _("Preferences") action ShowMenu("preferences") + + if _in_replay: + + textbutton _("End Replay") action EndReplay(confirm=True) + + elif not main_menu: + + textbutton _("Main Menu") action MainMenu() + + textbutton _("About") action ShowMenu("about") + + if renpy.variant("pc") or (renpy.variant("web") and not renpy.variant("mobile")): + + ## Help isn't necessary or relevant to mobile devices. + textbutton _("Help") action ShowMenu("help") + + if renpy.variant("pc"): + + ## The quit button is banned on iOS and unnecessary on Android and + ## Web. + textbutton _("Quit") action Quit(confirm=not main_menu) + + +style navigation_button is gui_button +style navigation_button_text is gui_button_text + +style navigation_button: + size_group "navigation" + properties gui.button_properties("navigation_button") + +style navigation_button_text: + properties gui.button_text_properties("navigation_button") + + +## Main Menu screen ############################################################ +## +## Used to display the main menu when Ren'Py starts. +## +## https://www.renpy.org/doc/html/screen_special.html#main-menu + +screen main_menu(): + + ## This ensures that any other menu screen is replaced. + tag menu + + add gui.main_menu_background + + ## This empty frame darkens the main menu. + frame: + style "main_menu_frame" + + ## The use statement includes another screen inside this one. The actual + ## contents of the main menu are in the navigation screen. + use navigation + + if gui.show_name: + + vbox: + style "main_menu_vbox" + + text "[config.name!t]": + style "main_menu_title" + + text "[config.version]": + style "main_menu_version" + + +style main_menu_frame is empty +style main_menu_vbox is vbox +style main_menu_text is gui_text +style main_menu_title is main_menu_text +style main_menu_version is main_menu_text + +style main_menu_frame: + xsize 420 + yfill True + + background "gui/overlay/main_menu.png" + +# style main_menu_vbox: +# xalign 1.0 +# xoffset -30 +# xmaximum 1200 +# yalign 1.0 +# yoffset -30 + +style main_menu_text: + properties gui.text_properties("main_menu", accent=True) + +style main_menu_title: + properties gui.text_properties("title") + +style main_menu_version: + properties gui.text_properties("version") + + +## Game Menu screen ############################################################ +## +## This lays out the basic common structure of a game menu screen. It's called +## with the screen title, and displays the background, title, and navigation. +## +## The scroll parameter can be None, or one of "viewport" or "vpgrid". When +## this screen is intended to be used with one or more children, which are +## transcluded (placed) inside it. + +screen game_menu(title, scroll=None, yinitial=0.0): + + style_prefix "game_menu" + + if main_menu: + add gui.main_menu_background + else: + add gui.game_menu_background + + frame: + style "game_menu_outer_frame" + + hbox: + + ## Reserve space for the navigation section. + frame: + style "game_menu_navigation_frame" + + frame: + style "game_menu_content_frame" + + if scroll == "viewport": + + viewport: + yinitial yinitial + scrollbars "vertical" + mousewheel True + draggable True + pagekeys True + + side_yfill True + + vbox: + transclude + + elif scroll == "vpgrid": + + vpgrid: + cols 1 + yinitial yinitial + + scrollbars "vertical" + mousewheel True + draggable True + pagekeys True + + side_yfill True + + transclude + + else: + + transclude + + use navigation + + textbutton _("Return"): + style "return_button" + + action Return() + + label title + + if main_menu: + key "game_menu" action ShowMenu("main_menu") + + +style game_menu_outer_frame is empty +style game_menu_navigation_frame is empty +style game_menu_content_frame is empty +style game_menu_viewport is gui_viewport +style game_menu_side is gui_side +style game_menu_scrollbar is gui_vscrollbar + +style game_menu_label is gui_label +style game_menu_label_text is gui_label_text + +style return_button is navigation_button +style return_button_text is navigation_button_text + +style game_menu_outer_frame: + bottom_padding 45 + top_padding 180 + + background "gui/overlay/game_menu.png" + +style game_menu_navigation_frame: + xsize 420 + yfill True + +style game_menu_content_frame: + left_margin 60 + right_margin 30 + top_margin 15 + +style game_menu_viewport: + xsize 1380 + +style game_menu_vscrollbar: + unscrollable gui.unscrollable + +style game_menu_side: + spacing 15 + +style game_menu_label: + xpos 75 + ysize 180 + +style game_menu_label_text: + size gui.title_text_size + color gui.accent_color + yalign 0.5 + +style return_button: + xpos gui.navigation_xpos + yalign 1.0 + yoffset -45 + + +## About screen ################################################################ +## +## This screen gives credit and copyright information about the game and Ren'Py. +## +## There's nothing special about this screen, and hence it also serves as an +## example of how to make a custom screen. + +screen about(): + + tag menu + + ## This use statement includes the game_menu screen inside this one. The + ## vbox child is then included inside the viewport inside the game_menu + ## screen. + use game_menu(_("About"), scroll="viewport"): + + style_prefix "about" + + vbox: + + label "[config.name!t]" + text _("Version [config.version!t]\n") + + ## gui.about is usually set in options.rpy. + if gui.about: + text "[gui.about!t]\n" + + text _("Made with {a=https://www.renpy.org/}Ren'Py{/a} [renpy.version_only].\n\n[renpy.license!t]") + + +style about_label is gui_label +style about_label_text is gui_label_text +style about_text is gui_text + +style about_label_text: + size gui.label_text_size + + +## Load and Save screens ####################################################### +## +## These screens are responsible for letting the player save the game and load +## it again. Since they share nearly everything in common, both are implemented +## in terms of a third screen, file_slots. +## +## https://www.renpy.org/doc/html/screen_special.html#save https:// +## www.renpy.org/doc/html/screen_special.html#load + +screen save(): + + tag menu + + use file_slots(_("Save")) + + +screen load(): + + tag menu + + use file_slots(_("Load")) + + +screen file_slots(title): + + default page_name_value = FilePageNameInputValue(pattern=_("Page {}"), auto=_("Automatic saves"), quick=_("Quick saves")) + + use game_menu(title): + + fixed: + + ## This ensures the input will get the enter event before any of the + ## buttons do. + order_reverse True + + ## The page name, which can be edited by clicking on a button. + button: + style "page_label" + + key_events True + xalign 0.5 + action page_name_value.Toggle() + + input: + style "page_label_text" + value page_name_value + + ## The grid of file slots. + grid gui.file_slot_cols gui.file_slot_rows: + style_prefix "slot" + + xalign 0.5 + yalign 0.5 + + spacing gui.slot_spacing + + for i in range(gui.file_slot_cols * gui.file_slot_rows): + + $ slot = i + 1 + + button: + action FileAction(slot) + + has vbox + + add FileScreenshot(slot) xalign 0.5 + + text FileTime(slot, format=_("{#file_time}%A, %B %d %Y, %H:%M"), empty=_("empty slot")): + style "slot_time_text" + + text FileSaveName(slot): + style "slot_name_text" + + key "save_delete" action FileDelete(slot) + + ## Buttons to access other pages. + hbox: + style_prefix "page" + + xalign 0.5 + yalign 1.0 + + spacing gui.page_spacing + + textbutton _("<") action FilePagePrevious() + + if config.has_autosave: + textbutton _("{#auto_page}A") action FilePage("auto") + + if config.has_quicksave: + textbutton _("{#quick_page}Q") action FilePage("quick") + + ## range(1, 10) gives the numbers from 1 to 9. + for page in range(1, 10): + textbutton "[page]" action FilePage(page) + + textbutton _(">") action FilePageNext() + + +style page_label is gui_label +style page_label_text is gui_label_text +style page_button is gui_button +style page_button_text is gui_button_text + +style slot_button is gui_button +style slot_button_text is gui_button_text +style slot_time_text is slot_button_text +style slot_name_text is slot_button_text + +style page_label: + xpadding 75 + ypadding 5 + +style page_label_text: + text_align 0.5 + layout "subtitle" + hover_color gui.hover_color + +style page_button: + properties gui.button_properties("page_button") + +style page_button_text: + properties gui.button_text_properties("page_button") + +style slot_button: + properties gui.button_properties("slot_button") + +style slot_button_text: + properties gui.button_text_properties("slot_button") + + +## Preferences screen ########################################################## +## +## The preferences screen allows the player to configure the game to better suit +## themselves. +## +## https://www.renpy.org/doc/html/screen_special.html#preferences + +screen preferences(): + + tag menu + + use game_menu(_("Preferences"), scroll="viewport"): + + vbox: + + hbox: + box_wrap True + + if renpy.variant("pc") or renpy.variant("web"): + + vbox: + style_prefix "radio" + label _("Display") + textbutton _("Window") action Preference("display", "window") + textbutton _("Fullscreen") action Preference("display", "fullscreen") + + + vbox: + style_prefix "pref" + + + label _("Language") + textbutton "English" action Language(None) + textbutton "Spanish" action Language("spanish") + + vbox: + style_prefix "check" + label _("Skip") + textbutton _("Unseen Text") action Preference("skip", "toggle") + textbutton _("After Choices") action Preference("after choices", "toggle") + textbutton _("Transitions") action InvertSelected(Preference("transitions", "toggle")) + + ## Additional vboxes of type "radio_pref" or "check_pref" can be + ## added here, to add additional creator-defined preferences. + + null height (4 * gui.pref_spacing) + + hbox: + style_prefix "slider" + box_wrap True + + vbox: + + label _("Text Speed") + + bar value Preference("text speed") + + label _("Auto-Forward Time") + + bar value Preference("auto-forward time") + + vbox: + + if config.has_music: + label _("Music Volume") + + hbox: + bar value Preference("music volume") + + if config.has_sound: + + label _("Sound Volume") + + hbox: + bar value Preference("sound volume") + + if config.sample_sound: + textbutton _("Test") action Play("sound", config.sample_sound) + + + if config.has_voice: + label _("Voice Volume") + + hbox: + bar value Preference("voice volume") + + if config.sample_voice: + textbutton _("Test") action Play("voice", config.sample_voice) + + if config.has_music or config.has_sound or config.has_voice: + null height gui.pref_spacing + + textbutton _("Mute All"): + action Preference("all mute", "toggle") + style "mute_all_button" + + +style pref_label is gui_label +style pref_label_text is gui_label_text +style pref_vbox is vbox + +style radio_label is pref_label +style radio_label_text is pref_label_text +style radio_button is gui_button +style radio_button_text is gui_button_text +style radio_vbox is pref_vbox + +style check_label is pref_label +style check_label_text is pref_label_text +style check_button is gui_button +style check_button_text is gui_button_text +style check_vbox is pref_vbox + +style slider_label is pref_label +style slider_label_text is pref_label_text +style slider_slider is gui_slider +style slider_button is gui_button +style slider_button_text is gui_button_text +style slider_pref_vbox is pref_vbox + +style mute_all_button is check_button +style mute_all_button_text is check_button_text + +style pref_label: + top_margin gui.pref_spacing + bottom_margin 3 + +style pref_label_text: + yalign 1.0 + +style pref_vbox: + xsize 338 + +style radio_vbox: + spacing gui.pref_button_spacing + +style radio_button: + properties gui.button_properties("radio_button") + foreground "gui/button/radio_[prefix_]foreground.png" + +style radio_button_text: + properties gui.button_text_properties("radio_button") + +style check_vbox: + spacing gui.pref_button_spacing + +style check_button: + properties gui.button_properties("check_button") + foreground "gui/button/check_[prefix_]foreground.png" + +style check_button_text: + properties gui.button_text_properties("check_button") + +style slider_slider: + xsize 525 + +style slider_button: + properties gui.button_properties("slider_button") + yalign 0.5 + left_margin 15 + +style slider_button_text: + properties gui.button_text_properties("slider_button") + +style slider_vbox: + xsize 675 + + +## History screen ############################################################## +## +## This is a screen that displays the dialogue history to the player. While +## there isn't anything special about this screen, it does have to access the +## dialogue history stored in _history_list. +## +## https://www.renpy.org/doc/html/history.html + +screen history(): + + tag menu + + ## Avoid predicting this screen, as it can be very large. + predict False + + use game_menu(_("History"), scroll=("vpgrid" if gui.history_height else "viewport"), yinitial=1.0): + + style_prefix "history" + + for h in _history_list: + + window: + + ## This lays things out properly if history_height is None. + has fixed: + yfit True + + if h.who: + + label h.who: + style "history_name" + substitute False + + ## Take the color of the who text from the Character, if + ## set. + if "color" in h.who_args: + text_color h.who_args["color"] + + $ what = renpy.filter_text_tags(h.what, allow=gui.history_allow_tags) + text what: + substitute False + + if not _history_list: + label _("The dialogue history is empty.") + + +## This determines what tags are allowed to be displayed on the history screen. + +define gui.history_allow_tags = { "alt", "noalt" } + + +style history_window is empty + +style history_name is gui_label +style history_name_text is gui_label_text +style history_text is gui_text + +style history_label is gui_label +style history_label_text is gui_label_text + +style history_window: + xfill True + ysize gui.history_height + +style history_name: + xpos gui.history_name_xpos + xanchor gui.history_name_xalign + ypos gui.history_name_ypos + xsize gui.history_name_width + +style history_name_text: + min_width gui.history_name_width + text_align gui.history_name_xalign + +style history_text: + xpos gui.history_text_xpos + ypos gui.history_text_ypos + xanchor gui.history_text_xalign + xsize gui.history_text_width + min_width gui.history_text_width + text_align gui.history_text_xalign + layout ("subtitle" if gui.history_text_xalign else "tex") + +style history_label: + xfill True + +style history_label_text: + xalign 0.5 + + +## Help screen ################################################################# +## +## A screen that gives information about key and mouse bindings. It uses other +## screens (keyboard_help, mouse_help, and gamepad_help) to display the actual +## help. + +screen help(): + + tag menu + + default device = "keyboard" + + use game_menu(_("Help"), scroll="viewport"): + + style_prefix "help" + + vbox: + spacing 23 + + hbox: + + textbutton _("Keyboard") action SetScreenVariable("device", "keyboard") + textbutton _("Mouse") action SetScreenVariable("device", "mouse") + + if GamepadExists(): + textbutton _("Gamepad") action SetScreenVariable("device", "gamepad") + + if device == "keyboard": + use keyboard_help + elif device == "mouse": + use mouse_help + elif device == "gamepad": + use gamepad_help + + +screen keyboard_help(): + + hbox: + label _("Enter") + text _("Advances dialogue and activates the interface.") + + hbox: + label _("Space") + text _("Advances dialogue without selecting choices.") + + hbox: + label _("Arrow Keys") + text _("Navigate the interface.") + + hbox: + label _("Escape") + text _("Accesses the game menu.") + + hbox: + label _("Ctrl") + text _("Skips dialogue while held down.") + + hbox: + label _("Tab") + text _("Toggles dialogue skipping.") + + hbox: + label _("Page Up") + text _("Rolls back to earlier dialogue.") + + hbox: + label _("Page Down") + text _("Rolls forward to later dialogue.") + + hbox: + label "H" + text _("Hides the user interface.") + + hbox: + label "S" + text _("Takes a screenshot.") + + hbox: + label "V" + text _("Toggles assistive {a=https://www.renpy.org/l/voicing}self-voicing{/a}.") + + hbox: + label "Shift+A" + text _("Opens the accessibility menu.") + + +screen mouse_help(): + + hbox: + label _("Left Click") + text _("Advances dialogue and activates the interface.") + + hbox: + label _("Middle Click") + text _("Hides the user interface.") + + hbox: + label _("Right Click") + text _("Accesses the game menu.") + + hbox: + label _("Mouse Wheel Up\nClick Rollback Side") + text _("Rolls back to earlier dialogue.") + + hbox: + label _("Mouse Wheel Down") + text _("Rolls forward to later dialogue.") + + +screen gamepad_help(): + + hbox: + label _("Right Trigger\nA/Bottom Button") + text _("Advances dialogue and activates the interface.") + + hbox: + label _("Left Trigger\nLeft Shoulder") + text _("Rolls back to earlier dialogue.") + + hbox: + label _("Right Shoulder") + text _("Rolls forward to later dialogue.") + + + hbox: + label _("D-Pad, Sticks") + text _("Navigate the interface.") + + hbox: + label _("Start, Guide") + text _("Accesses the game menu.") + + hbox: + label _("Y/Top Button") + text _("Hides the user interface.") + + textbutton _("Calibrate") action GamepadCalibrate() + + +style help_button is gui_button +style help_button_text is gui_button_text +style help_label is gui_label +style help_label_text is gui_label_text +style help_text is gui_text + +style help_button: + properties gui.button_properties("help_button") + xmargin 12 + +style help_button_text: + properties gui.button_text_properties("help_button") + +style help_label: + xsize 375 + right_padding 30 + +style help_label_text: + size gui.text_size + xalign 1.0 + text_align 1.0 + + + +################################################################################ +## Additional screens +################################################################################ + + +## Confirm screen ############################################################## +## +## The confirm screen is called when Ren'Py wants to ask the player a yes or no +## question. +## +## https://www.renpy.org/doc/html/screen_special.html#confirm + +screen confirm(message, yes_action, no_action): + + ## Ensure other screens do not get input while this screen is displayed. + modal True + + zorder 200 + + style_prefix "confirm" + + add "gui/overlay/confirm.png" + + frame: + + vbox: + xalign .5 + yalign .5 + spacing 45 + + label _(message): + style "confirm_prompt" + xalign 0.5 + + hbox: + xalign 0.5 + spacing 150 + + textbutton _("Yes") action yes_action + textbutton _("No") action no_action + + ## Right-click and escape answer "no". + key "game_menu" action no_action + + +style confirm_frame is gui_frame +style confirm_prompt is gui_prompt +style confirm_prompt_text is gui_prompt_text +style confirm_button is gui_medium_button +style confirm_button_text is gui_medium_button_text + +style confirm_frame: + background Frame([ "gui/confirm_frame.png", "gui/frame.png"], gui.confirm_frame_borders, tile=gui.frame_tile) + padding gui.confirm_frame_borders.padding + xalign .5 + yalign .5 + +style confirm_prompt_text: + text_align 0.5 + layout "subtitle" + +style confirm_button: + properties gui.button_properties("confirm_button") + +style confirm_button_text: + properties gui.button_text_properties("confirm_button") + + +## Skip indicator screen ####################################################### +## +## The skip_indicator screen is displayed to indicate that skipping is in +## progress. +## +## https://www.renpy.org/doc/html/screen_special.html#skip-indicator + +screen skip_indicator(): + + zorder 100 + style_prefix "skip" + + frame: + + hbox: + spacing 9 + + text _("Skipping") + + text "▸" at delayed_blink(0.0, 1.0) style "skip_triangle" + text "▸" at delayed_blink(0.2, 1.0) style "skip_triangle" + text "▸" at delayed_blink(0.4, 1.0) style "skip_triangle" + + +## This transform is used to blink the arrows one after another. +transform delayed_blink(delay, cycle): + alpha .5 + + pause delay + + block: + linear .2 alpha 1.0 + pause .2 + linear .2 alpha 0.5 + pause (cycle - .4) + repeat + + +style skip_frame is empty +style skip_text is gui_text +style skip_triangle is skip_text + +style skip_frame: + ypos gui.skip_ypos + background Frame("gui/skip.png", gui.skip_frame_borders, tile=gui.frame_tile) + padding gui.skip_frame_borders.padding + +style skip_text: + size gui.notify_text_size + +style skip_triangle: + ## We have to use a font that has the BLACK RIGHT-POINTING SMALL TRIANGLE + ## glyph in it. + font "DejaVuSans.ttf" + + +## Notify screen ############################################################### +## +## The notify screen is used to show the player a message. (For example, when +## the game is quicksaved or a screenshot has been taken.) +## +## https://www.renpy.org/doc/html/screen_special.html#notify-screen + +screen notify(message): + + zorder 100 + style_prefix "notify" + + frame at notify_appear: + text "[message!tq]" + + timer 3.25 action Hide('notify') + + +transform notify_appear: + on show: + alpha 0 + linear .25 alpha 1.0 + on hide: + linear .5 alpha 0.0 + + +style notify_frame is empty +style notify_text is gui_text + +style notify_frame: + ypos gui.notify_ypos + + background Frame("gui/notify.png", gui.notify_frame_borders, tile=gui.frame_tile) + padding gui.notify_frame_borders.padding + +style notify_text: + properties gui.text_properties("notify") + + +## NVL screen ################################################################## +## +## This screen is used for NVL-mode dialogue and menus. +## +## https://www.renpy.org/doc/html/screen_special.html#nvl + + +screen nvl(dialogue, items=None): + + window: + style "nvl_window" + + has vbox: + spacing gui.nvl_spacing + + ## Displays dialogue in either a vpgrid or the vbox. + if gui.nvl_height: + + vpgrid: + cols 1 + yinitial 1.0 + + use nvl_dialogue(dialogue) + + else: + + use nvl_dialogue(dialogue) + + ## Displays the menu, if given. The menu may be displayed incorrectly if + ## config.narrator_menu is set to True. + for i in items: + + textbutton i.caption: + action i.action + style "nvl_button" + + add SideImage() xalign 0.0 yalign 1.0 + + +screen nvl_dialogue(dialogue): + + for d in dialogue: + + window: + id d.window_id + + fixed: + yfit gui.nvl_height is None + + if d.who is not None: + + text d.who: + id d.who_id + + text d.what: + id d.what_id + + +## This controls the maximum number of NVL-mode entries that can be displayed at +## once. +define config.nvl_list_length = gui.nvl_list_length + +style nvl_window is default +style nvl_entry is default + +style nvl_label is say_label +style nvl_dialogue is say_dialogue + +style nvl_button is button +style nvl_button_text is button_text + +style nvl_window: + xfill True + yfill True + + background "gui/nvl.png" + padding gui.nvl_borders.padding + +style nvl_entry: + xfill True + ysize gui.nvl_height + +style nvl_label: + xpos gui.nvl_name_xpos + xanchor gui.nvl_name_xalign + ypos gui.nvl_name_ypos + yanchor 0.0 + xsize gui.nvl_name_width + min_width gui.nvl_name_width + text_align gui.nvl_name_xalign + +style nvl_dialogue: + xpos gui.nvl_text_xpos + xanchor gui.nvl_text_xalign + ypos gui.nvl_text_ypos + xsize gui.nvl_text_width + min_width gui.nvl_text_width + text_align gui.nvl_text_xalign + layout ("subtitle" if gui.nvl_text_xalign else "tex") + +style nvl_thought: + xpos gui.nvl_thought_xpos + xanchor gui.nvl_thought_xalign + ypos gui.nvl_thought_ypos + xsize gui.nvl_thought_width + min_width gui.nvl_thought_width + text_align gui.nvl_thought_xalign + layout ("subtitle" if gui.nvl_text_xalign else "tex") + +style nvl_button: + properties gui.button_properties("nvl_button") + xpos gui.nvl_button_xpos + xanchor gui.nvl_button_xalign + +style nvl_button_text: + properties gui.button_text_properties("nvl_button") + + + +################################################################################ +## Mobile Variants +################################################################################ + +style pref_vbox: + variant "medium" + xsize 675 + +## Since a mouse may not be present, we replace the quick menu with a version +## that uses fewer and bigger buttons that are easier to touch. +screen quick_menu(): + variant "touch" + + zorder 100 + + if quick_menu: + + hbox: + style_prefix "quick" + + xalign 0.5 + yalign 1.0 + + textbutton _("Back") action Rollback() + textbutton _("Skip") action Skip() alternate Skip(fast=True, confirm=True) + textbutton _("Auto") action Preference("auto-forward", "toggle") + textbutton _("Menu") action ShowMenu() + + +style window: + variant "small" + background "gui/phone/textbox.png" + +style radio_button: + variant "small" + foreground "gui/phone/button/radio_[prefix_]foreground.png" + +style check_button: + variant "small" + foreground "gui/phone/button/check_[prefix_]foreground.png" + +style nvl_window: + variant "small" + background "gui/phone/nvl.png" + +style main_menu_frame: + variant "small" + background "gui/phone/overlay/main_menu.png" + +style game_menu_outer_frame: + variant "small" + background "gui/phone/overlay/game_menu.png" + +style game_menu_navigation_frame: + variant "small" + xsize 510 + +style game_menu_content_frame: + variant "small" + top_margin 0 + +style pref_vbox: + variant "small" + xsize 600 + +style bar: + variant "small" + ysize gui.bar_size + left_bar Frame("gui/phone/bar/left.png", gui.bar_borders, tile=gui.bar_tile) + right_bar Frame("gui/phone/bar/right.png", gui.bar_borders, tile=gui.bar_tile) + +style vbar: + variant "small" + xsize gui.bar_size + top_bar Frame("gui/phone/bar/top.png", gui.vbar_borders, tile=gui.bar_tile) + bottom_bar Frame("gui/phone/bar/bottom.png", gui.vbar_borders, tile=gui.bar_tile) + +style scrollbar: + variant "small" + ysize gui.scrollbar_size + base_bar Frame("gui/phone/scrollbar/horizontal_[prefix_]bar.png", gui.scrollbar_borders, tile=gui.scrollbar_tile) + thumb Frame("gui/phone/scrollbar/horizontal_[prefix_]thumb.png", gui.scrollbar_borders, tile=gui.scrollbar_tile) + +style vscrollbar: + variant "small" + xsize gui.scrollbar_size + base_bar Frame("gui/phone/scrollbar/vertical_[prefix_]bar.png", gui.vscrollbar_borders, tile=gui.scrollbar_tile) + thumb Frame("gui/phone/scrollbar/vertical_[prefix_]thumb.png", gui.vscrollbar_borders, tile=gui.scrollbar_tile) + +style slider: + variant "small" + ysize gui.slider_size + base_bar Frame("gui/phone/slider/horizontal_[prefix_]bar.png", gui.slider_borders, tile=gui.slider_tile) + thumb "gui/phone/slider/horizontal_[prefix_]thumb.png" + +style vslider: + variant "small" + xsize gui.slider_size + base_bar Frame("gui/phone/slider/vertical_[prefix_]bar.png", gui.vslider_borders, tile=gui.slider_tile) + thumb "gui/phone/slider/vertical_[prefix_]thumb.png" + +style slider_vbox: + variant "small" + xsize None + +style slider_slider: + variant "small" + xsize 900 diff --git a/game/script.rpy b/game/script.rpy new file mode 100755 index 0000000..7c3ac59 --- /dev/null +++ b/game/script.rpy @@ -0,0 +1,277 @@ + +# Setting up the characters and their colours + +define pleroma = Character("Pleroma", image="pleroma", who_color="#eda664") + +define mc = Character("Unoriginal Main Character", who_color="#64abed") + +define admin = Character("Administrator",who_color="#64abed") + +define grumb = Character("Grumbulon", image="grumb",who_color="#e9a0d9") + +define weeble = Character("Weeble", image="weeble",who_color="#64ed7b") + +define lain = Character(name="Lain",who_color="#fcfcfc") + + +# A few variables needed along the game + +default instance_name = "0" + +default grumb_played = False + +default weeble_played = False + + +# Music + +default chill = "audio/chill.mp3" +default funny = "audio/funny.mp3" +default sad = "audio/sad.mp3" +default madness = "audio/madness.mp3" + +# Sounds + +default ding = "audio/ding.mp3" +default whoosh = "audio/whoosh.mp3" +default scratch = "audio/record-scratch.mp3" + + +init python: + import re + + # simple url check so instances get checked before proceeding + + def check_instance(instance): + + try: + instance = re.findall(r'([\w\-_]+(?:(?:\.[\w\-_]+)+))([\w\-\.,@?^=%&:/~\+#]*[\w\-\@?^=%&/~\+#])?', instance)[0][0] + except Exception as e: + instance = "0" + return instance + + + + +# The game starts here. + +label start: + + stop music fadeout 5.0 + scene bg startup + with fade + pause 4.0 + + lain "People use mastodon because they love the community. " + + lain "People use pleroma because they love me." + + pause 0.5 + scene bg room with dissolve + pause 0.5 + play music chill loop fadein 4.5 + + "You wake up in your bedroom earlier than usual." + "You turn to your nightstand to see the red glowing numbers on your clock that read 12:36 PM." + + mc "Wow I'm up earlier than usual." + mc "Today is the day I setup a pleroma instance." + mc "I hope it's as cool as it sounds." + + "You make your way way to your desk where you turn on your ThinkPad™ laptop." + + scene bg desk with dissolve + pause 0.5 + scene bg desk light with dissolve + pause 0.5 + + "You recall browsing the /g/ board earlier that week and seeing a thread on the fediverse." + + "As a user put it: + Fediverse is a based decentralized schizo-esoteric lain-pilled free-speech alternative platform for chads too wired for the typical soy-liberal pronoun cuck safespaces that most NPCs use these days." + + "You're not to sure what that means but the thread had a link to the pleroma install guide and you're already banned on twitter so you don't have anything to lose." + + + "With all the prerequisites done, you go down the list of instructions until you're asked to input a domain name." + + mc "Hmmmm what was that domain I bought again?…" + jump instance_choice + + +label instance_choice: + + + $instance_name = renpy.input(prompt="URL: ") + $instance_name = str(check_instance(instance_name)) + + + if instance_name == "0": + + mc "Oops, that's not right, let's try again." + jump instance_choice + + if instance_name == "waifuism.life": + + mc "I'm not a weeb, what was it again?" + jump instance_choice + + if instance_name == "bungle.online": + + mc "No no, that one was taken." + jump instance_choice + + if instance_name == "freecumextremist.com": + + mc "Seriously? Nah nah, this isn't right that couldn't be." + jump instance_choice + + + mc "Oh that's right, [instance_name]." + + "You start your pleroma instance and no errors pop up. You've done it!" + + "You've successfully installed pleroma! Now you just need to create your account." + + mc "I'll just keep it simple and name myself admin." + mc "Not like I had a more creative option" + + #{MC's name changes to Admin} + + "You put in [instance_name] into your Brave Browser and see your brand new instance." + + scene bg desk pl #[Scene switches to a close up of the computer screen with the default pleroma page on it] + + admin "Wow kinda looks like a more retro aesthetic twitter." + admin "Now let me test out this account." + + "You log into your account and before you can do much else something weird happens." + + show pleroma normal + with dissolve + stop music fadeout 1.0 + play sound ding + show pleroma normal talk + with dissolve + + pleroma "Greetings Admin-kun..." + + show pleroma normal + with dissolve + + + menu: + "What the hell is this a bug?!": + pass + "Oh god I'm going schizo…": + pass + + + + show pleroma normal smug + with dissolve + pause 0.5 + + show pleroma normal smug talk + with dissolve + + pleroma "I'm sorry I didn't mean to scare you." + + play music chill fadein 5.0 + + show pleroma normal talk + with dissolve + + pleroma "You can call me Pleroma-Tan. I am the software your instance is running on." + + show pleroma normal + with dissolve + + admin "When I decided to join the fediverse and create an instance I didn't expect my software to be this.." + + + show pleroma normal smug talk + with dissolve + + pleroma "…Cute?" + + show pleroma normal + with dissolve + + admin "W-w-weird!" + + show pleroma handup talk + with dissolve + + pleroma "No worries Admin-kun. The fediverse is very different from other social sites and I'm here to help you learn." + + show pleroma handup + with dissolve + + admin "And why do you keep calling me admin?" + + show pleroma normal talk + with dissolve + + pleroma "Isn't that your name on the account?" + + pleroma "It wouldn't be wise to put your full name out on the fediverse or the internet in general." + + show pleroma normal + with dissolve + + admin "I suppose" + + show pleroma normal talk + with dissolve + + pleroma "Besides I don't need your full name…" + + show pleroma normal smug talk + with dissolve + + pleroma "Unless you want me to have your name, but I think you're supposed to buy me a ring first." + + show pleroma smug + with dissolve + + admin "What?!" + + "You're not sure how to feel about all this. You just wanted a chill social media to post some memes on and now you have this weird fox lady saying embarrassing things." + + show pleroma normal talk + with dissolve + + pleroma "Anyway are you ready to join the fediverse?" + + show pleroma normal + with dissolve + + "You look at your screen skeptically. Why was there no mention of Pleroma-tan in the /g/ thread or the install documents? Is this a prank? Did you install the wrong thing? Everything about this just seemed very sketchy to you." + + "On the other hand, this is probably the most female attention you've had in years so it wouldn't hurt to indulge a little bit. Besides it's just computer software. It's not real or anything." + + admin "Sure I'm ready" + + show pleroma hands grin + with dissolve + pleroma "Great!" + stop music fadeout 1.0 + "..." + pause 1.5 + play sound whoosh + scene bg enterfedi with vpunch + play music funny + + " Before you could process what is happening, Pleroma-tan extends a hand out from the computer screen and grabs onto you." + "You let a scared yelp as she pulls you to the screen." + "Your adrenaline spikes as your mind is trying to process what is happening and how it's even possible." + "Despite all the shock you can't help but look down and think." + "Wow her hands are soft." + + "End of chapter 1" + + return + + jump chapter2 + diff --git a/game/tl/spanish/chapter2.rpy b/game/tl/spanish/chapter2.rpy new file mode 100755 index 0000000..0b62e6e --- /dev/null +++ b/game/tl/spanish/chapter2.rpy @@ -0,0 +1,50 @@ +# TODO: Translation updated at 2022-11-01 10:58 + +# game/chapter2.rpy:8 +translate spanish chapter2_18c4439f: + + # "Dialogue and presentation of the fediverse" + "" + +# game/chapter2.rpy:46 +translate spanish bungle_51356580: + + # weeble "Placeholder dialogue" + weeble "" + +# game/chapter2.rpy:60 +translate spanish FCE_0a809485: + + # grumb "Placeholder dialogue" + grumb "" + +# game/chapter2.rpy:73 +translate spanish mastodon_0acd65a6: + + # grumb "Right on" + grumb "" + +# game/chapter2.rpy:75 +translate spanish mastodon_5c3919c6: + + # "description of the events" + "" + +translate spanish strings: + + # game/chapter2.rpy:16 + old "Where do you want to go?" + new "" + + # game/chapter2.rpy:16 + old "bungle" + new "" + + # game/chapter2.rpy:16 + old "FCE" + new "" + + # game/chapter2.rpy:16 + old "I Want something different" + new "" + diff --git a/game/tl/spanish/common.rpy b/game/tl/spanish/common.rpy new file mode 100755 index 0000000..c4ddfb7 --- /dev/null +++ b/game/tl/spanish/common.rpy @@ -0,0 +1,1156 @@ +# TODO: Translation updated at 2022-11-01 10:58 + +translate spanish strings: + + # renpy/common/00accessibility.rpy:28 + old "Self-voicing disabled." + new "" + + # renpy/common/00accessibility.rpy:29 + old "Clipboard voicing enabled. " + new "" + + # renpy/common/00accessibility.rpy:30 + old "Self-voicing enabled. " + new "" + + # renpy/common/00accessibility.rpy:32 + old "bar" + new "" + + # renpy/common/00accessibility.rpy:33 + old "selected" + new "" + + # renpy/common/00accessibility.rpy:34 + old "viewport" + new "" + + # renpy/common/00accessibility.rpy:35 + old "horizontal scroll" + new "" + + # renpy/common/00accessibility.rpy:36 + old "vertical scroll" + new "" + + # renpy/common/00accessibility.rpy:37 + old "activate" + new "" + + # renpy/common/00accessibility.rpy:38 + old "deactivate" + new "" + + # renpy/common/00accessibility.rpy:39 + old "increase" + new "" + + # renpy/common/00accessibility.rpy:40 + old "decrease" + new "" + + # renpy/common/00accessibility.rpy:138 + old "Font Override" + new "" + + # renpy/common/00accessibility.rpy:142 + old "Default" + new "" + + # renpy/common/00accessibility.rpy:146 + old "DejaVu Sans" + new "" + + # renpy/common/00accessibility.rpy:150 + old "Opendyslexic" + new "" + + # renpy/common/00accessibility.rpy:156 + old "Text Size Scaling" + new "" + + # renpy/common/00accessibility.rpy:162 + old "Reset" + new "" + + # renpy/common/00accessibility.rpy:168 + old "Line Spacing Scaling" + new "" + + # renpy/common/00accessibility.rpy:180 + old "High Contrast Text" + new "" + + # renpy/common/00accessibility.rpy:182 + old "Enable" + new "" + + # renpy/common/00accessibility.rpy:186 + old "Disable" + new "" + + # renpy/common/00accessibility.rpy:193 + old "Self-Voicing" + new "" + + # renpy/common/00accessibility.rpy:197 + old "Off" + new "" + + # renpy/common/00accessibility.rpy:201 + old "Text-to-speech" + new "" + + # renpy/common/00accessibility.rpy:205 + old "Clipboard" + new "" + + # renpy/common/00accessibility.rpy:209 + old "Debug" + new "" + + # renpy/common/00accessibility.rpy:215 + old "Self-Voicing Volume Drop" + new "" + + # renpy/common/00accessibility.rpy:224 + old "The options on this menu are intended to improve accessibility. They may not work with all games, and some combinations of options may render the game unplayable. This is not an issue with the game or engine. For the best results when changing fonts, try to keep the text size the same as it originally was." + new "" + + # renpy/common/00action_file.rpy:26 + old "{#weekday}Monday" + new "" + + # renpy/common/00action_file.rpy:26 + old "{#weekday}Tuesday" + new "" + + # renpy/common/00action_file.rpy:26 + old "{#weekday}Wednesday" + new "" + + # renpy/common/00action_file.rpy:26 + old "{#weekday}Thursday" + new "" + + # renpy/common/00action_file.rpy:26 + old "{#weekday}Friday" + new "" + + # renpy/common/00action_file.rpy:26 + old "{#weekday}Saturday" + new "" + + # renpy/common/00action_file.rpy:26 + old "{#weekday}Sunday" + new "" + + # renpy/common/00action_file.rpy:37 + old "{#weekday_short}Mon" + new "" + + # renpy/common/00action_file.rpy:37 + old "{#weekday_short}Tue" + new "" + + # renpy/common/00action_file.rpy:37 + old "{#weekday_short}Wed" + new "" + + # renpy/common/00action_file.rpy:37 + old "{#weekday_short}Thu" + new "" + + # renpy/common/00action_file.rpy:37 + old "{#weekday_short}Fri" + new "" + + # renpy/common/00action_file.rpy:37 + old "{#weekday_short}Sat" + new "" + + # renpy/common/00action_file.rpy:37 + old "{#weekday_short}Sun" + new "" + + # renpy/common/00action_file.rpy:47 + old "{#month}January" + new "" + + # renpy/common/00action_file.rpy:47 + old "{#month}February" + new "" + + # renpy/common/00action_file.rpy:47 + old "{#month}March" + new "" + + # renpy/common/00action_file.rpy:47 + old "{#month}April" + new "" + + # renpy/common/00action_file.rpy:47 + old "{#month}May" + new "" + + # renpy/common/00action_file.rpy:47 + old "{#month}June" + new "" + + # renpy/common/00action_file.rpy:47 + old "{#month}July" + new "" + + # renpy/common/00action_file.rpy:47 + old "{#month}August" + new "" + + # renpy/common/00action_file.rpy:47 + old "{#month}September" + new "" + + # renpy/common/00action_file.rpy:47 + old "{#month}October" + new "" + + # renpy/common/00action_file.rpy:47 + old "{#month}November" + new "" + + # renpy/common/00action_file.rpy:47 + old "{#month}December" + new "" + + # renpy/common/00action_file.rpy:63 + old "{#month_short}Jan" + new "" + + # renpy/common/00action_file.rpy:63 + old "{#month_short}Feb" + new "" + + # renpy/common/00action_file.rpy:63 + old "{#month_short}Mar" + new "" + + # renpy/common/00action_file.rpy:63 + old "{#month_short}Apr" + new "" + + # renpy/common/00action_file.rpy:63 + old "{#month_short}May" + new "" + + # renpy/common/00action_file.rpy:63 + old "{#month_short}Jun" + new "" + + # renpy/common/00action_file.rpy:63 + old "{#month_short}Jul" + new "" + + # renpy/common/00action_file.rpy:63 + old "{#month_short}Aug" + new "" + + # renpy/common/00action_file.rpy:63 + old "{#month_short}Sep" + new "" + + # renpy/common/00action_file.rpy:63 + old "{#month_short}Oct" + new "" + + # renpy/common/00action_file.rpy:63 + old "{#month_short}Nov" + new "" + + # renpy/common/00action_file.rpy:63 + old "{#month_short}Dec" + new "" + + # renpy/common/00action_file.rpy:250 + old "%b %d, %H:%M" + new "" + + # renpy/common/00action_file.rpy:364 + old "Save slot %s: [text]" + new "" + + # renpy/common/00action_file.rpy:445 + old "Load slot %s: [text]" + new "" + + # renpy/common/00action_file.rpy:498 + old "Delete slot [text]" + new "" + + # renpy/common/00action_file.rpy:577 + old "File page auto" + new "" + + # renpy/common/00action_file.rpy:579 + old "File page quick" + new "" + + # renpy/common/00action_file.rpy:581 + old "File page [text]" + new "" + + # renpy/common/00action_file.rpy:780 + old "Next file page." + new "" + + # renpy/common/00action_file.rpy:852 + old "Previous file page." + new "" + + # renpy/common/00action_file.rpy:913 + old "Quick save complete." + new "" + + # renpy/common/00action_file.rpy:931 + old "Quick save." + new "" + + # renpy/common/00action_file.rpy:950 + old "Quick load." + new "" + + # renpy/common/00action_other.rpy:381 + old "Language [text]" + new "" + + # renpy/common/00action_other.rpy:703 + old "Open [text] directory." + new "" + + # renpy/common/00director.rpy:708 + old "The interactive director is not enabled here." + new "" + + # renpy/common/00director.rpy:1481 + old "⬆" + new "" + + # renpy/common/00director.rpy:1487 + old "⬇" + new "" + + # renpy/common/00director.rpy:1551 + old "Done" + new "" + + # renpy/common/00director.rpy:1561 + old "(statement)" + new "" + + # renpy/common/00director.rpy:1562 + old "(tag)" + new "" + + # renpy/common/00director.rpy:1563 + old "(attributes)" + new "" + + # renpy/common/00director.rpy:1564 + old "(transform)" + new "" + + # renpy/common/00director.rpy:1589 + old "(transition)" + new "" + + # renpy/common/00director.rpy:1601 + old "(channel)" + new "" + + # renpy/common/00director.rpy:1602 + old "(filename)" + new "" + + # renpy/common/00director.rpy:1631 + old "Change" + new "" + + # renpy/common/00director.rpy:1633 + old "Add" + new "" + + # renpy/common/00director.rpy:1636 + old "Cancel" + new "" + + # renpy/common/00director.rpy:1639 + old "Remove" + new "" + + # renpy/common/00director.rpy:1674 + old "Statement:" + new "" + + # renpy/common/00director.rpy:1695 + old "Tag:" + new "" + + # renpy/common/00director.rpy:1711 + old "Attributes:" + new "" + + # renpy/common/00director.rpy:1729 + old "Transforms:" + new "" + + # renpy/common/00director.rpy:1748 + old "Behind:" + new "" + + # renpy/common/00director.rpy:1767 + old "Transition:" + new "" + + # renpy/common/00director.rpy:1785 + old "Channel:" + new "" + + # renpy/common/00director.rpy:1803 + old "Audio Filename:" + new "" + + # renpy/common/00gui.rpy:435 + old "Are you sure?" + new "" + + # renpy/common/00gui.rpy:436 + old "Are you sure you want to delete this save?" + new "" + + # renpy/common/00gui.rpy:437 + old "Are you sure you want to overwrite your save?" + new "" + + # renpy/common/00gui.rpy:438 + old "Loading will lose unsaved progress.\nAre you sure you want to do this?" + new "" + + # renpy/common/00gui.rpy:439 + old "Are you sure you want to quit?" + new "" + + # renpy/common/00gui.rpy:440 + old "Are you sure you want to return to the main menu?\nThis will lose unsaved progress." + new "" + + # renpy/common/00gui.rpy:441 + old "Are you sure you want to end the replay?" + new "" + + # renpy/common/00gui.rpy:442 + old "Are you sure you want to begin skipping?" + new "" + + # renpy/common/00gui.rpy:443 + old "Are you sure you want to skip to the next choice?" + new "" + + # renpy/common/00gui.rpy:444 + old "Are you sure you want to skip unseen dialogue to the next choice?" + new "" + + # renpy/common/00keymap.rpy:310 + old "Failed to save screenshot as %s." + new "" + + # renpy/common/00keymap.rpy:322 + old "Saved screenshot as %s." + new "" + + # renpy/common/00library.rpy:211 + old "Skip Mode" + new "" + + # renpy/common/00library.rpy:297 + old "This program contains free software under a number of licenses, including the MIT License and GNU Lesser General Public License. A complete list of software, including links to full source code, can be found {a=https://www.renpy.org/l/license}here{/a}." + new "" + + # renpy/common/00preferences.rpy:259 + old "display" + new "" + + # renpy/common/00preferences.rpy:271 + old "transitions" + new "" + + # renpy/common/00preferences.rpy:280 + old "skip transitions" + new "" + + # renpy/common/00preferences.rpy:282 + old "video sprites" + new "" + + # renpy/common/00preferences.rpy:291 + old "show empty window" + new "" + + # renpy/common/00preferences.rpy:300 + old "text speed" + new "" + + # renpy/common/00preferences.rpy:308 + old "joystick" + new "" + + # renpy/common/00preferences.rpy:308 + old "joystick..." + new "" + + # renpy/common/00preferences.rpy:315 + old "skip" + new "" + + # renpy/common/00preferences.rpy:318 + old "skip unseen [text]" + new "" + + # renpy/common/00preferences.rpy:323 + old "skip unseen text" + new "" + + # renpy/common/00preferences.rpy:325 + old "begin skipping" + new "" + + # renpy/common/00preferences.rpy:329 + old "after choices" + new "" + + # renpy/common/00preferences.rpy:336 + old "skip after choices" + new "" + + # renpy/common/00preferences.rpy:338 + old "auto-forward time" + new "" + + # renpy/common/00preferences.rpy:352 + old "auto-forward" + new "" + + # renpy/common/00preferences.rpy:359 + old "Auto forward" + new "" + + # renpy/common/00preferences.rpy:362 + old "auto-forward after click" + new "" + + # renpy/common/00preferences.rpy:371 + old "automatic move" + new "" + + # renpy/common/00preferences.rpy:380 + old "wait for voice" + new "" + + # renpy/common/00preferences.rpy:389 + old "voice sustain" + new "" + + # renpy/common/00preferences.rpy:398 + old "self voicing" + new "" + + # renpy/common/00preferences.rpy:407 + old "self voicing volume drop" + new "" + + # renpy/common/00preferences.rpy:415 + old "clipboard voicing" + new "" + + # renpy/common/00preferences.rpy:424 + old "debug voicing" + new "" + + # renpy/common/00preferences.rpy:433 + old "emphasize audio" + new "" + + # renpy/common/00preferences.rpy:442 + old "rollback side" + new "" + + # renpy/common/00preferences.rpy:452 + old "gl powersave" + new "" + + # renpy/common/00preferences.rpy:458 + old "gl framerate" + new "" + + # renpy/common/00preferences.rpy:461 + old "gl tearing" + new "" + + # renpy/common/00preferences.rpy:464 + old "font transform" + new "" + + # renpy/common/00preferences.rpy:467 + old "font size" + new "" + + # renpy/common/00preferences.rpy:475 + old "font line spacing" + new "" + + # renpy/common/00preferences.rpy:483 + old "system cursor" + new "" + + # renpy/common/00preferences.rpy:492 + old "renderer menu" + new "" + + # renpy/common/00preferences.rpy:495 + old "accessibility menu" + new "" + + # renpy/common/00preferences.rpy:498 + old "high contrast text" + new "" + + # renpy/common/00preferences.rpy:507 + old "audio when minimized" + new "" + + # renpy/common/00preferences.rpy:527 + old "main volume" + new "" + + # renpy/common/00preferences.rpy:528 + old "music volume" + new "" + + # renpy/common/00preferences.rpy:529 + old "sound volume" + new "" + + # renpy/common/00preferences.rpy:530 + old "voice volume" + new "" + + # renpy/common/00preferences.rpy:531 + old "mute main" + new "" + + # renpy/common/00preferences.rpy:532 + old "mute music" + new "" + + # renpy/common/00preferences.rpy:533 + old "mute sound" + new "" + + # renpy/common/00preferences.rpy:534 + old "mute voice" + new "" + + # renpy/common/00preferences.rpy:535 + old "mute all" + new "" + + # renpy/common/00preferences.rpy:616 + old "Clipboard voicing enabled. Press 'shift+C' to disable." + new "" + + # renpy/common/00preferences.rpy:618 + old "Self-voicing would say \"[renpy.display.tts.last]\". Press 'alt+shift+V' to disable." + new "" + + # renpy/common/00preferences.rpy:620 + old "Self-voicing enabled. Press 'v' to disable." + new "" + + # renpy/common/_compat/gamemenu.rpym:198 + old "Empty Slot." + new "" + + # renpy/common/_compat/gamemenu.rpym:355 + old "Previous" + new "" + + # renpy/common/_compat/gamemenu.rpym:362 + old "Next" + new "" + + # renpy/common/_compat/preferences.rpym:428 + old "Joystick Mapping" + new "" + + # renpy/common/_developer/developer.rpym:38 + old "Developer Menu" + new "" + + # renpy/common/_developer/developer.rpym:43 + old "Interactive Director (D)" + new "" + + # renpy/common/_developer/developer.rpym:45 + old "Reload Game (Shift+R)" + new "" + + # renpy/common/_developer/developer.rpym:47 + old "Console (Shift+O)" + new "" + + # renpy/common/_developer/developer.rpym:49 + old "Variable Viewer" + new "" + + # renpy/common/_developer/developer.rpym:51 + old "Image Location Picker" + new "" + + # renpy/common/_developer/developer.rpym:53 + old "Filename List" + new "" + + # renpy/common/_developer/developer.rpym:57 + old "Show Image Load Log (F4)" + new "" + + # renpy/common/_developer/developer.rpym:60 + old "Hide Image Load Log (F4)" + new "" + + # renpy/common/_developer/developer.rpym:63 + old "Image Attributes" + new "" + + # renpy/common/_developer/developer.rpym:90 + old "[name] [attributes] (hidden)" + new "" + + # renpy/common/_developer/developer.rpym:94 + old "[name] [attributes]" + new "" + + # renpy/common/_developer/developer.rpym:143 + old "Nothing to inspect." + new "" + + # renpy/common/_developer/developer.rpym:154 + old "Hide deleted" + new "" + + # renpy/common/_developer/developer.rpym:154 + old "Show deleted" + new "" + + # renpy/common/_developer/developer.rpym:278 + old "Return to the developer menu" + new "" + + # renpy/common/_developer/developer.rpym:443 + old "Rectangle: %r" + new "" + + # renpy/common/_developer/developer.rpym:448 + old "Mouse position: %r" + new "" + + # renpy/common/_developer/developer.rpym:453 + old "Right-click or escape to quit." + new "" + + # renpy/common/_developer/developer.rpym:485 + old "Rectangle copied to clipboard." + new "" + + # renpy/common/_developer/developer.rpym:488 + old "Position copied to clipboard." + new "" + + # renpy/common/_developer/developer.rpym:506 + old "Type to filter: " + new "" + + # renpy/common/_developer/developer.rpym:631 + old "Textures: [tex_count] ([tex_size_mb:.1f] MB)" + new "" + + # renpy/common/_developer/developer.rpym:635 + old "Image cache: [cache_pct:.1f]% ([cache_size_mb:.1f] MB)" + new "" + + # renpy/common/_developer/developer.rpym:645 + old "✔ " + new "" + + # renpy/common/_developer/developer.rpym:648 + old "✘ " + new "" + + # renpy/common/_developer/developer.rpym:653 + old "\n{color=#cfc}✔ predicted image (good){/color}\n{color=#fcc}✘ unpredicted image (bad){/color}\n{color=#fff}Drag to move.{/color}" + new "" + + # renpy/common/_developer/inspector.rpym:38 + old "Displayable Inspector" + new "" + + # renpy/common/_developer/inspector.rpym:61 + old "Size" + new "" + + # renpy/common/_developer/inspector.rpym:65 + old "Style" + new "" + + # renpy/common/_developer/inspector.rpym:71 + old "Location" + new "" + + # renpy/common/_developer/inspector.rpym:122 + old "Inspecting Styles of [displayable_name!q]" + new "" + + # renpy/common/_developer/inspector.rpym:139 + old "displayable:" + new "" + + # renpy/common/_developer/inspector.rpym:145 + old " (no properties affect the displayable)" + new "" + + # renpy/common/_developer/inspector.rpym:147 + old " (default properties omitted)" + new "" + + # renpy/common/_developer/inspector.rpym:185 + old "" + new "" + + # renpy/common/_layout/classic_load_save.rpym:170 + old "a" + new "" + + # renpy/common/_layout/classic_load_save.rpym:179 + old "q" + new "" + + # renpy/common/00iap.rpy:219 + old "Contacting App Store\nPlease Wait..." + new "" + + # renpy/common/00updater.rpy:419 + old "The Ren'Py Updater is not supported on mobile devices." + new "" + + # renpy/common/00updater.rpy:548 + old "An error is being simulated." + new "" + + # renpy/common/00updater.rpy:738 + old "Either this project does not support updating, or the update status file was deleted." + new "" + + # renpy/common/00updater.rpy:752 + old "This account does not have permission to perform an update." + new "" + + # renpy/common/00updater.rpy:755 + old "This account does not have permission to write the update log." + new "" + + # renpy/common/00updater.rpy:783 + old "Could not verify update signature." + new "" + + # renpy/common/00updater.rpy:1084 + old "The update file was not downloaded." + new "" + + # renpy/common/00updater.rpy:1102 + old "The update file does not have the correct digest - it may have been corrupted." + new "" + + # renpy/common/00updater.rpy:1252 + old "While unpacking {}, unknown type {}." + new "" + + # renpy/common/00updater.rpy:1624 + old "Updater" + new "" + + # renpy/common/00updater.rpy:1631 + old "An error has occured:" + new "" + + # renpy/common/00updater.rpy:1633 + old "Checking for updates." + new "" + + # renpy/common/00updater.rpy:1635 + old "This program is up to date." + new "" + + # renpy/common/00updater.rpy:1637 + old "[u.version] is available. Do you want to install it?" + new "" + + # renpy/common/00updater.rpy:1639 + old "Preparing to download the updates." + new "" + + # renpy/common/00updater.rpy:1641 + old "Downloading the updates." + new "" + + # renpy/common/00updater.rpy:1643 + old "Unpacking the updates." + new "" + + # renpy/common/00updater.rpy:1645 + old "Finishing up." + new "" + + # renpy/common/00updater.rpy:1647 + old "The updates have been installed. The program will restart." + new "" + + # renpy/common/00updater.rpy:1649 + old "The updates have been installed." + new "" + + # renpy/common/00updater.rpy:1651 + old "The updates were cancelled." + new "" + + # renpy/common/00updater.rpy:1666 + old "Proceed" + new "" + + # renpy/common/00gallery.rpy:627 + old "Image [index] of [count] locked." + new "" + + # renpy/common/00gallery.rpy:647 + old "prev" + new "" + + # renpy/common/00gallery.rpy:648 + old "next" + new "" + + # renpy/common/00gallery.rpy:649 + old "slideshow" + new "" + + # renpy/common/00gallery.rpy:650 + old "return" + new "" + + # renpy/common/00gltest.rpy:89 + old "Renderer" + new "" + + # renpy/common/00gltest.rpy:93 + old "Automatically Choose" + new "" + + # renpy/common/00gltest.rpy:100 + old "Force GL Renderer" + new "" + + # renpy/common/00gltest.rpy:105 + old "Force ANGLE Renderer" + new "" + + # renpy/common/00gltest.rpy:110 + old "Force GLES Renderer" + new "" + + # renpy/common/00gltest.rpy:116 + old "Force GL2 Renderer" + new "" + + # renpy/common/00gltest.rpy:121 + old "Force ANGLE2 Renderer" + new "" + + # renpy/common/00gltest.rpy:126 + old "Force GLES2 Renderer" + new "" + + # renpy/common/00gltest.rpy:136 + old "Enable (No Blocklist)" + new "" + + # renpy/common/00gltest.rpy:159 + old "Powersave" + new "" + + # renpy/common/00gltest.rpy:173 + old "Framerate" + new "" + + # renpy/common/00gltest.rpy:177 + old "Screen" + new "" + + # renpy/common/00gltest.rpy:181 + old "60" + new "" + + # renpy/common/00gltest.rpy:185 + old "30" + new "" + + # renpy/common/00gltest.rpy:191 + old "Tearing" + new "" + + # renpy/common/00gltest.rpy:207 + old "Changes will take effect the next time this program is run." + new "" + + # renpy/common/00gltest.rpy:242 + old "Performance Warning" + new "" + + # renpy/common/00gltest.rpy:247 + old "This computer is using software rendering." + new "" + + # renpy/common/00gltest.rpy:249 + old "This game requires use of GL2 that can't be initialised." + new "" + + # renpy/common/00gltest.rpy:251 + old "This computer has a problem displaying graphics: [problem]." + new "" + + # renpy/common/00gltest.rpy:255 + old "Its graphics drivers may be out of date or not operating correctly. This can lead to slow or incorrect graphics display." + new "" + + # renpy/common/00gltest.rpy:259 + old "The {a=edit:1:log.txt}log.txt{/a} file may contain information to help you determine what is wrong with your computer." + new "" + + # renpy/common/00gltest.rpy:264 + old "More details on how to fix this can be found in the {a=[url]}documentation{/a}." + new "" + + # renpy/common/00gltest.rpy:269 + old "Continue, Show this warning again" + new "" + + # renpy/common/00gltest.rpy:273 + old "Continue, Don't show warning again" + new "" + + # renpy/common/00gltest.rpy:281 + old "Change render options" + new "" + + # renpy/common/00gamepad.rpy:32 + old "Select Gamepad to Calibrate" + new "" + + # renpy/common/00gamepad.rpy:35 + old "No Gamepads Available" + new "" + + # renpy/common/00gamepad.rpy:54 + old "Calibrating [name] ([i]/[total])" + new "" + + # renpy/common/00gamepad.rpy:58 + old "Press or move the '[control!s]' [kind]." + new "" + + # renpy/common/00gamepad.rpy:68 + old "Skip (A)" + new "" + + # renpy/common/00gamepad.rpy:71 + old "Back (B)" + new "" + + # renpy/common/_errorhandling.rpym:555 + old "Open" + new "" + + # renpy/common/_errorhandling.rpym:557 + old "Opens the traceback.txt file in a text editor." + new "" + + # renpy/common/_errorhandling.rpym:559 + old "Copy BBCode" + new "" + + # renpy/common/_errorhandling.rpym:561 + old "Copies the traceback.txt file to the clipboard as BBcode for forums like https://lemmasoft.renai.us/." + new "" + + # renpy/common/_errorhandling.rpym:563 + old "Copy Markdown" + new "" + + # renpy/common/_errorhandling.rpym:565 + old "Copies the traceback.txt file to the clipboard as Markdown for Discord." + new "" + + # renpy/common/_errorhandling.rpym:594 + old "An exception has occurred." + new "" + + # renpy/common/_errorhandling.rpym:617 + old "Rollback" + new "" + + # renpy/common/_errorhandling.rpym:619 + old "Attempts a roll back to a prior time, allowing you to save or choose a different choice." + new "" + + # renpy/common/_errorhandling.rpym:622 + old "Ignore" + new "" + + # renpy/common/_errorhandling.rpym:626 + old "Ignores the exception, allowing you to continue." + new "" + + # renpy/common/_errorhandling.rpym:628 + old "Ignores the exception, allowing you to continue. This often leads to additional errors." + new "" + + # renpy/common/_errorhandling.rpym:632 + old "Reload" + new "" + + # renpy/common/_errorhandling.rpym:634 + old "Reloads the game from disk, saving and restoring game state if possible." + new "" + + # renpy/common/_errorhandling.rpym:637 + old "Console" + new "" + + # renpy/common/_errorhandling.rpym:639 + old "Opens a console to allow debugging the problem." + new "" + + # renpy/common/_errorhandling.rpym:652 + old "Quits the game." + new "" + + # renpy/common/_errorhandling.rpym:673 + old "Parsing the script failed." + new "" + diff --git a/game/tl/spanish/options.rpy b/game/tl/spanish/options.rpy new file mode 100755 index 0000000..8e37250 --- /dev/null +++ b/game/tl/spanish/options.rpy @@ -0,0 +1,8 @@ +# TODO: Translation updated at 2022-11-01 10:58 + +translate spanish strings: + + # game/options.rpy:15 + old "Federated love: I can't believe my instance is this cute!" + new "" + diff --git a/game/tl/spanish/screens.rpy b/game/tl/spanish/screens.rpy new file mode 100755 index 0000000..51f0668 --- /dev/null +++ b/game/tl/spanish/screens.rpy @@ -0,0 +1,336 @@ +# TODO: Translation updated at 2022-11-01 10:58 + +translate spanish strings: + + # game/screens.rpy:252 + old "Back" + new "Atras" + + # game/screens.rpy:253 + old "History" + new "Historial" + + # game/screens.rpy:254 + old "Skip" + new "Saltar" + + # game/screens.rpy:255 + old "Auto" + new "Auto" + + # game/screens.rpy:256 + old "Save" + new "Guardar" + + # game/screens.rpy:257 + old "Q.Save" + new "G.Rapido" + + # game/screens.rpy:258 + old "Q.Load" + new "C.Rapido" + + # game/screens.rpy:259 + old "Prefs" + new "Prefs" + + # game/screens.rpy:300 + old "Start" + new "Inicio" + + # game/screens.rpy:308 + old "Load" + new "Cargar" + + # game/screens.rpy:310 + old "Preferences" + new "Preferencias" + + # game/screens.rpy:314 + old "End Replay" + new "Fin Replay" + + # game/screens.rpy:318 + old "Main Menu" + new "Menú principal" + + # game/screens.rpy:320 + old "About" + new "Acerca de" + + # game/screens.rpy:325 + old "Help" + new "Ayuda" + + # game/screens.rpy:331 + old "Quit" + new "Salir" + + # game/screens.rpy:472 + old "Return" + new "Atras" + + # game/screens.rpy:556 + old "Version [config.version!t]\n" + new "Versión [config.version!t]\n" + + # game/screens.rpy:562 + old "Made with {a=https://www.renpy.org/}Ren'Py{/a} [renpy.version_only].\n\n[renpy.license!t]" + new "" + + # game/screens.rpy:598 + old "Page {}" + new "Pagina {}" + + # game/screens.rpy:598 + old "Automatic saves" + new "Guardados Automáticos" + + # game/screens.rpy:598 + old "Quick saves" + new "Guardados rápidos" + + # game/screens.rpy:640 + old "{#file_time}%A, %B %d %Y, %H:%M" + new "{#file_time}%A, %B %d %Y, %H:%M" + + # game/screens.rpy:640 + old "empty slot" + new "lugar vacío" + + # game/screens.rpy:657 + old "<" + new "<" + + # game/screens.rpy:660 + old "{#auto_page}A" + new "{#auto_page}A" + + # game/screens.rpy:663 + old "{#quick_page}Q" + new "{#quick_page}Q" + + # game/screens.rpy:669 + old ">" + new ">" + + # game/screens.rpy:726 + old "Display" + new "Modo pantalla" + + # game/screens.rpy:727 + old "Window" + new "Ventana" + + # game/screens.rpy:728 + old "Fullscreen" + new "Pantalla completa" + + # game/screens.rpy:733 + old "Unseen Text" + new "Texto sin ver" + + # game/screens.rpy:734 + old "After Choices" + new "Luego de elecciones" + + # game/screens.rpy:735 + old "Transitions" + new "Transiciones" + + # game/screens.rpy:748 + old "Text Speed" + new "" + + # game/screens.rpy:752 + old "Auto-Forward Time" + new "" + + # game/screens.rpy:759 + old "Music Volume" + new "" + + # game/screens.rpy:766 + old "Sound Volume" + new "" + + # game/screens.rpy:772 + old "Test" + new "" + + # game/screens.rpy:776 + old "Voice Volume" + new "" + + # game/screens.rpy:787 + old "Mute All" + new "" + + # game/screens.rpy:906 + old "The dialogue history is empty." + new "" + + # game/screens.rpy:974 + old "Keyboard" + new "" + + # game/screens.rpy:975 + old "Mouse" + new "" + + # game/screens.rpy:978 + old "Gamepad" + new "" + + # game/screens.rpy:991 + old "Enter" + new "" + + # game/screens.rpy:992 + old "Advances dialogue and activates the interface." + new "" + + # game/screens.rpy:995 + old "Space" + new "" + + # game/screens.rpy:996 + old "Advances dialogue without selecting choices." + new "" + + # game/screens.rpy:999 + old "Arrow Keys" + new "" + + # game/screens.rpy:1000 + old "Navigate the interface." + new "" + + # game/screens.rpy:1003 + old "Escape" + new "" + + # game/screens.rpy:1004 + old "Accesses the game menu." + new "" + + # game/screens.rpy:1007 + old "Ctrl" + new "" + + # game/screens.rpy:1008 + old "Skips dialogue while held down." + new "" + + # game/screens.rpy:1011 + old "Tab" + new "" + + # game/screens.rpy:1012 + old "Toggles dialogue skipping." + new "" + + # game/screens.rpy:1015 + old "Page Up" + new "" + + # game/screens.rpy:1016 + old "Rolls back to earlier dialogue." + new "" + + # game/screens.rpy:1019 + old "Page Down" + new "" + + # game/screens.rpy:1020 + old "Rolls forward to later dialogue." + new "" + + # game/screens.rpy:1024 + old "Hides the user interface." + new "" + + # game/screens.rpy:1028 + old "Takes a screenshot." + new "" + + # game/screens.rpy:1032 + old "Toggles assistive {a=https://www.renpy.org/l/voicing}self-voicing{/a}." + new "" + + # game/screens.rpy:1036 + old "Opens the accessibility menu." + new "" + + # game/screens.rpy:1042 + old "Left Click" + new "" + + # game/screens.rpy:1046 + old "Middle Click" + new "" + + # game/screens.rpy:1050 + old "Right Click" + new "" + + # game/screens.rpy:1054 + old "Mouse Wheel Up\nClick Rollback Side" + new "" + + # game/screens.rpy:1058 + old "Mouse Wheel Down" + new "" + + # game/screens.rpy:1065 + old "Right Trigger\nA/Bottom Button" + new "" + + # game/screens.rpy:1069 + old "Left Trigger\nLeft Shoulder" + new "" + + # game/screens.rpy:1073 + old "Right Shoulder" + new "" + + # game/screens.rpy:1078 + old "D-Pad, Sticks" + new "" + + # game/screens.rpy:1082 + old "Start, Guide" + new "" + + # game/screens.rpy:1086 + old "Y/Top Button" + new "" + + # game/screens.rpy:1089 + old "Calibrate" + new "" + + # game/screens.rpy:1154 + old "Yes" + new "" + + # game/screens.rpy:1155 + old "No" + new "" + + # game/screens.rpy:1201 + old "Skipping" + new "" + + # game/screens.rpy:1424 + old "Menu" + new "" + +# TODO: Translation updated at 2022-11-05 00:16 + +translate spanish strings: + + # game/screens.rpy:735 + old "Language" + new "" + diff --git a/game/tl/spanish/script.rpy b/game/tl/spanish/script.rpy new file mode 100755 index 0000000..2bf7fbf --- /dev/null +++ b/game/tl/spanish/script.rpy @@ -0,0 +1,332 @@ +# TODO: Translation updated at 2022-11-01 10:58 + +# game/script.rpy:65 +translate spanish start_38f01754: + + # lain "People use mastodon because they love the community. " + lain "la gente usa mastodon" + +# game/script.rpy:67 +translate spanish start_5e6622ca: + + # lain "People use pleroma because they love me." + lain "" + +# game/script.rpy:74 +translate spanish start_b3591ab4: + + # "You wake up in your bedroom earlier than usual." + "" + +# game/script.rpy:75 +translate spanish start_f68a172f: + + # "You turn to your nightstand to see the red glowing numbers on your clock that read 12:36 PM." + "" + +# game/script.rpy:77 +translate spanish start_a61b5a4f: + + # mc "Wow I'm up earlier than usual." + mc "" + +# game/script.rpy:78 +translate spanish start_921400f9: + + # mc "Today is the day I setup a pleroma instance." + mc "" + +# game/script.rpy:79 +translate spanish start_31b3f2a5: + + # mc "I hope it's as cool as it sounds." + mc "" + +# game/script.rpy:81 +translate spanish start_611bf824: + + # "You make your way way to your desk where you turn on your ThinkPad™ laptop." + "" + +# game/script.rpy:88 +translate spanish start_be4e388f: + + # "You recall browsing the /g/ board earlier that week and seeing a thread on the fediverse." + "" + +# game/script.rpy:90 +translate spanish start_1d211e56: + + # "As a user put it: Fediverse is a based decentralized schizo-esoteric lain-pilled free-speech alternative platform for chads too wired for the typical soy-liberal pronoun cuck safespaces that most NPCs use these days." + "" + +# game/script.rpy:93 +translate spanish start_c49689f8: + + # "You're not to sure what that means but the thread had a link to the pleroma install guide and you're already banned on twitter so you don't have anything to lose." + "" + +# game/script.rpy:96 +translate spanish start_e8ea87f8: + + # "With all the prerequisites done, you go down the list of instructions until you're asked to input a domain name." + "" + +# game/script.rpy:98 +translate spanish start_fec00d6d: + + # mc "Hmmmm what was that domain I bought again?…" + mc "" + +# game/script.rpy:111 +translate spanish instance_choice_caa38e4f: + + # mc "Oops, that's not right, let's try again." + mc "" + +# game/script.rpy:116 +translate spanish instance_choice_88718de5: + + # mc "I'm not a weeb, what was it again?" + mc "" + +# game/script.rpy:121 +translate spanish instance_choice_2acc62d0: + + # mc "No no, that one was taken." + mc "" + +# game/script.rpy:126 +translate spanish instance_choice_398b0439: + + # mc "Seriously? Nah nah, this isn't right that couldn't be." + mc "" + +# game/script.rpy:130 +translate spanish instance_choice_35f36be7: + + # mc "Oh that's right, [instance_name]." + mc "" + +# game/script.rpy:132 +translate spanish instance_choice_961b84db: + + # "You start your pleroma instance and no errors pop up. You've done it!" + "" + +# game/script.rpy:134 +translate spanish instance_choice_50ec800a: + + # "You've successfully installed pleroma! Now you just need to create your account." + "" + +# game/script.rpy:136 +translate spanish instance_choice_a3753401: + + # mc "I'll just keep it simple and name myself admin." + mc "" + +# game/script.rpy:137 +translate spanish instance_choice_4739e4f0: + + # mc "Not like I had a more creative option" + mc "" + +# game/script.rpy:141 +translate spanish instance_choice_44ebab94: + + # "You put in [instance_name] into your Brave Browser and see your brand new instance." + "" + +# game/script.rpy:145 +translate spanish instance_choice_7e1d80a7: + + # admin "Wow kinda looks like a more retro aesthetic twitter." + admin "" + +# game/script.rpy:146 +translate spanish instance_choice_a5d175b5: + + # admin "Now let me test out this account." + admin "" + +# game/script.rpy:148 +translate spanish instance_choice_850c457e: + + # "You log into your account and before you can do much else something weird happens." + "" + +# game/script.rpy:157 +translate spanish instance_choice_6a853ec6: + + # pleroma "Greetings Admin-kun..." + pleroma "" + +# game/script.rpy:178 +translate spanish instance_choice_3e3d4397: + + # pleroma "I'm sorry I didn't mean to scare you." + pleroma "" + +# game/script.rpy:185 +translate spanish instance_choice_316f9387: + + # pleroma "You can call me Pleroma-Tan. I am the software your instance is running on." + pleroma "" + +# game/script.rpy:190 +translate spanish instance_choice_7b0a2163: + + # admin "When I decided to join the fediverse and create an instance I didn't expect my software to be this.." + admin "" + +# game/script.rpy:196 +translate spanish instance_choice_c52c8753: + + # pleroma "…Cute?" + pleroma "" + +# game/script.rpy:201 +translate spanish instance_choice_643767f4: + + # admin "W-w-weird!" + admin "" + +# game/script.rpy:206 +translate spanish instance_choice_261f1ff8: + + # pleroma "No worries Admin-kun. The fediverse is very different from other social sites and I'm here to help you learn." + pleroma "" + +# game/script.rpy:211 +translate spanish instance_choice_d5812ee1: + + # admin "And why do you keep calling me admin?" + admin "" + +# game/script.rpy:216 +translate spanish instance_choice_422af8bb: + + # pleroma "Isn't that your name on the account?" + pleroma "" + +# game/script.rpy:218 +translate spanish instance_choice_5f3b1cb7: + + # pleroma "It wouldn't be wise to put your full name out on the fediverse or the internet in general." + pleroma "" + +# game/script.rpy:223 +translate spanish instance_choice_f45a158e: + + # admin "I suppose" + admin "" + +# game/script.rpy:228 +translate spanish instance_choice_1522a6d1: + + # pleroma "Besides I don't need your full name…" + pleroma "" + +# game/script.rpy:233 +translate spanish instance_choice_cb471c8b: + + # pleroma "Unless you want me to have your name, but I think you're supposed to buy me a ring first." + pleroma "" + +# game/script.rpy:238 +translate spanish instance_choice_20e6a0b1: + + # admin "What?!" + admin "" + +# game/script.rpy:240 +translate spanish instance_choice_d610707d: + + # "You're not sure how to feel about all this. You just wanted a chill social media to post some memes on and now you have this weird fox lady saying embarrassing things." + "" + +# game/script.rpy:245 +translate spanish instance_choice_940a3ba4: + + # pleroma "Anyway are you ready to join the fediverse?" + pleroma "" + +# game/script.rpy:250 +translate spanish instance_choice_717329eb: + + # "You look at your screen skeptically. Why was there no mention of Pleroma-tan in the /g/ thread or the install documents? Is this a prank? Did you install the wrong thing? Everything about this just seemed very sketchy to you." + "" + +# game/script.rpy:252 +translate spanish instance_choice_19b1d1a1: + + # "On the other hand, this is probably the most female attention you've had in years so it wouldn't hurt to indulge a little bit. Besides it's just computer software. It's not real or anything." + "" + +# game/script.rpy:254 +translate spanish instance_choice_be4b898c: + + # admin "Sure I'm ready" + admin "" + +# game/script.rpy:258 +translate spanish instance_choice_332f1a6c: + + # pleroma "Great!" + pleroma "" + +# game/script.rpy:260 +translate spanish instance_choice_a20cefa7: + + # "..." + "" + +# game/script.rpy:266 +translate spanish instance_choice_4636e53d: + + # " Before you could process what is happening, Pleroma-tan extends a hand out from the computer screen and grabs onto you." + "" + +# game/script.rpy:267 +translate spanish instance_choice_0729c818: + + # "You let a scared yelp as she pulls you to the screen." + "" + +# game/script.rpy:268 +translate spanish instance_choice_92703205: + + # "Your adrenaline spikes as your mind is trying to process what is happening and how it's even possible." + "" + +# game/script.rpy:269 +translate spanish instance_choice_946a8e7e: + + # "Despite all the shock you can't help but look down and think." + "" + +# game/script.rpy:270 +translate spanish instance_choice_6c86eb33: + + # "Wow her hands are soft." + "" + +translate spanish strings: + + # game/script.rpy:163 + old "What the hell is this a bug?!" + new "" + + # game/script.rpy:163 + old "Oh god I'm going schizo…" + new "" + +# TODO: Translation updated at 2022-11-05 00:16 + +# game/script.rpy:272 +translate spanish instance_choice_46ac7d8a: + + # "End of chapter 1" + "" + diff --git a/project.json b/project.json new file mode 100755 index 0000000..2436795 --- /dev/null +++ b/project.json @@ -0,0 +1 @@ +{"android_build": "Release", "renamed_all": true, "renamed_steam": true, "force_recompile": false, "build_update": false, "packages": ["pc", "linux", "mac"], "add_from": true} \ No newline at end of file