Compare commits

..

4 Commits

Author SHA1 Message Date
MichaelYick 1046f65408 Merge pull request 'chore: Removes tradwife flag' (#220) from san7890/SnootGame:flag-cleanup into NewPatch
Reviewed-on: #220
2023-05-07 02:13:46 +00:00
san7890 404d3f91bd removes the `trad` arg to `initstats()` as well 2023-05-06 20:11:35 -06:00
san7890 340528ee02 removes the ending flag 2023-05-06 20:06:38 -06:00
san7890 ef4764b322 `get_ending` to not be numerically based, but instead enum-based. (#219)
Co-authored-by: san7890 <the@san7890.com>
Reviewed-on: #219
Co-authored-by: san7890 <san7890@noreply.git.cavemanon.xyz>
Co-committed-by: san7890 <san7890@noreply.git.cavemanon.xyz>
2023-05-07 00:44:59 +00:00
112 changed files with 704 additions and 91466 deletions

View File

@ -1 +0,0 @@
{"expansion": false, "heap_size": "3", "icon_name": "Snoot Game", "include_pil": false, "include_sqlite": false, "layout": null, "name": "Snoot Game", "numeric_version": 1, "orientation": "sensorLandscape", "package": "cavemanon.snootgame", "permissions": ["VIBRATE", "INTERNET"], "source": false, "store": "none", "update_always": true, "update_icons": true, "update_keystores": true, "version": "INTERNAL-BUILD"}

5
.gitignore vendored
View File

@ -51,4 +51,7 @@ env
*.rpymc
#backups
*.bak
*.bak
#android
.android.json

View File

@ -1,81 +0,0 @@
steps:
changelog:
image: debian
commands:
- apt update
- apt install git -y
- mkdir dist
- git log --oneline --decorate --since="7.days" --pretty="## %s%n%an%n%aD%n%b" > dist/README.md || echo "Could not write changelog!" >> dist/README.md #Get that changelog
version-tag:
image: debian
commands:
- sed -i -e "s/INTERNAL-BUILD/${CI_COMMIT_TAG}/g" game/options.rpy #Change the internal build name to the tagged version
- sed -i -e "s/INTERNAL-BUILD/${CI_COMMIT_TAG}/g" .android.json
when:
- event: tag
version-cron:
image: debian
commands:
- sed -i -e "s/INTERNAL-BUILD/${CI_COMMIT_SHA}/g" game/options.rpy #if no tag, make it the commit num
- sed -i -e "s/INTERNAL-BUILD/${CI_COMMIT_TAG}/g" .android.json
when:
- event: cron
build:
image: openjdk:8
commands:
- apt update
- apt install libgl1 -y
- sed -i -e "s/VERSION/${RenpyVersion}/g" game/options.rpy #Change the renpy version to the woodpecker reuqested one.
#Get Renkit
- wget -qO- "https://github.com/kobaltcore/renkit/releases/download/v${RenkitVersion}/renkit-linux-amd64.tar.gz" | tar xz --directory=/tmp/
- /tmp/renconstruct build -i "." -c "renconstruct.toml" -o dist/
- cd /tmp/
archival-sha:
image: debian
commands:
- apt update
- apt install curl bash -y
- curl https://git.cavemanon.xyz/Cavemanon/Woodpecker-Webdav/raw/branch/master/push.sh > /tmp/push.sh ## I'd use a proper docker container, but dockerhub is owned by the CIA and I refuse to deal with that (also I don't care to maintain it or set it up). #TODO: merge this script as apart of the file so we don't make unnecessary network requests every time we build.
- chmod +x /tmp/push.sh
- PLUGIN_USERNAME=$RELEASESMITHNEXTCLOUDUSERNAME PLUGIN_PASSWORD=$RELEASESMITHNEXTCLOUDPASSWORD PLUGIN_DESTINATION=https://cloud.dev.cavemanon.xyz/remote.php/dav/files/ReleaseSmith/Snoot%20Game/Internal%20Builds/nightly-${CI_COMMIT_SHA}/ PLUGIN_MAKE_FOLDER_AT=https://cloud.dev.cavemanon.xyz/remote.php/dav/files/ReleaseSmith/Snoot%20Game/Internal%20Builds/nightly-${CI_COMMIT_SHA}/ PLUGIN_FILE_GLOB=dist/* /tmp/push.sh #sovl
- rm -rf "dist"
secrets: [ releasesmithnextcloudusername, releasesmithnextcloudpassword ]
when:
- event: cron
cron: "nightly"
archival-tag:
image: debian
commands:
- apt update
- apt install curl bash -y
- curl https://git.cavemanon.xyz/Cavemanon/Woodpecker-Webdav/raw/branch/master/push.sh > /tmp/push.sh ## I'd use a proper docker container, but dockerhub is owned by the CIA and I refuse to deal with that (also I don't care to maintain it or set it up). #TODO: merge this script as apart of the file so we don't make unnecessary network requests every time we build.
- chmod +x /tmp/push.sh
- PLUGIN_USERNAME=$RELEASESMITHNEXTCLOUDUSERNAME PLUGIN_PASSWORD=$RELEASESMITHNEXTCLOUDPASSWORD PLUGIN_DESTINATION=https://cloud.dev.cavemanon.xyz/remote.php/dav/files/ReleaseSmith/Snoot%20Game/Internal%20Builds/release-${CI_COMMIT_TAG}/ PLUGIN_MAKE_FOLDER_AT=https://cloud.dev.cavemanon.xyz/remote.php/dav/files/ReleaseSmith/Snoot%20Game/Internal%20Builds/release-${CI_COMMIT_TAG}/ PLUGIN_FILE_GLOB=dist/* /tmp/push.sh #sovl
- rm -rf "dist"
secrets: [ releasesmithnextcloudusername, releasesmithnextcloudpassword ]
when:
- event: tag
release:
image: woodpeckerci/plugin-gitea-release:latest
settings:
base_url: https://git.cavemanon.xyz
api_key:
from_secret: releasesmithapikey
files: "*-dists/*"
prerelease: true
title: "${CI_COMMIT_TAG}"
when:
- event: tag
matrix:
RenpyVersion:
- "8.0.3"
RenkitVersion:
- "3.3.1"

Binary file not shown.

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.3 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 215 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.1 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 150 KiB

View File

@ -24,7 +24,7 @@ define gui.show_name = True
## The version of the game.
define config.version = _("INTERNAL-BUILD")
define config.version = _("Patch8_NewYears")
## Text that is placed on the game's about screen. Place the text between the
## triple-quotes, and leave a blank line between paragraphs.

View File

@ -292,10 +292,10 @@ screen quick_menu():
use quick_buttons("gui/button/uioptionbuttons/template_idle.png",
[
[ _("Skip"), Skip() ],
[ _("Save"), ShowMenu('save') ],
[ _("Auto"), Preference("auto-forward", "toggle") ],
[ _("Load"), ShowMenu('load') ]
[ "Skip", Skip() ],
[ "Save", ShowMenu('save') ],
[ "Auto", Preference("auto-forward", "toggle") ],
[ "Load", ShowMenu('load') ]
] )
screen score_menu():
@ -437,16 +437,11 @@ screen bonus_chapter_button(f="gui/button/menubuttons/template_idle.png"):
action ShowMenu("ex_ch_menu")
activate_sound "audio/ui/uiClick.wav"
fixed:
if (persistent.old_endings != persistent.endings) or (persistent.bonus_chapters != persistent.old_bonus_chapters and (persistent.bonus_chapters == 0b111111111)):
if persistent.old_endings != persistent.endings:
add "bonus_flash" xalign 0.5 yalign 0.5 zoom 1 xanchor 0 xcenter 0.5 ycenter 0.5
$ persistent.old_endings = persistent.endings
#$ persistent.old_bonus_chapters = persistent.bonus_chapters
else:
add f xalign 0.5 yalign 0.5 zoom 1 xanchor 0 xcenter 0.5 ycenter 0.5
if (persistent.old_bonus_chapters != persistent.bonus_chapters): #just in case
$ persistent.old_bonus_chapters = persistent.bonus_chapters
text "Bonus Chapters" xalign 0.5 yalign 0.5 xanchor 0.5
# label_functions is [ [ "label", function() ], [ "foobar", foobar() ], .. ]
@ -477,8 +472,7 @@ screen main_menu():
frame:
pass
if (persistent.old_endings != persistent.endings) or (persistent.bonus_chapters != persistent.old_bonus_chapters and (persistent.bonus_chapters == 0b111111111)):
if persistent.old_endings != persistent.endings:
fixed:
xalign 0.125
yalign 0.5
@ -490,13 +484,10 @@ screen main_menu():
add Solid(gui.accent_color) xysize ( int(1920/2)-20, int(1080/4)-12 ):
xalign 0.5
yalign 0.5
if persistent.endings == 0b1111 and (persistent.bonus_chapters == 0b111111111):
text _("You have unlocked the final bonus chapter!") style "main_menu_text" yalign 0.5
elif persistent.endings == 0b1111:
text _("You have finished all endings! Complete all bonus chapters to receive the final chapter!") style "main_menu_text" yalign 0.5
if persistent.endings == 0b1111:
text "You have unlocked all bonus chapters!" style "main_menu_text" yalign 0.5
else:
text _("You have unlocked new bonus chapters, complete unseen endings to see more!") style "main_menu_text" yalign 0.5
text "You have unlocked new bonus chapters, complete unseen endings to see more!" style "main_menu_text" yalign 0.5
## The use statement includes another screen inside this one. The actual
## contents of the main menu are in the navigation screen.
@ -516,20 +507,20 @@ screen main_menu():
use bonus_chapter_button("template_black")
use main_menu_buttons("template_black",
[
[ _("Load"), ShowMenu("load") ],
[ _("Options"), ShowMenu("preferences") ],
[ _("Extras"), ShowMenu("extras") ], \
[ _("Quit"), Quit(confirm=not main_menu) ]
[ "Load", ShowMenu("load") ],
[ "Options", ShowMenu("preferences") ],
[ "Extras", ShowMenu("extras") ], \
[ "Quit", Quit(confirm=not main_menu) ]
] )
else:
use main_menu_button("gui/button/menubuttons/template_idle.png", "Start", Start())
use bonus_chapter_button()
use main_menu_buttons("gui/button/menubuttons/template_idle.png",
[
[ _("Load"), ShowMenu("load") ],
[ _("Options"), ShowMenu("preferences") ],
[ _("Extras"), ShowMenu("extras") ], \
[ _("Quit"), Quit(confirm=not main_menu) ]
[ "Load", ShowMenu("load") ],
[ "Options", ShowMenu("preferences") ],
[ "Extras", ShowMenu("extras") ], \
[ "Quit", Quit(confirm=not main_menu) ]
] )
#on "show" action renpy.start_predict_screen("cg_gallery")
@ -1267,11 +1258,11 @@ screen extrasnavigation():
ypos 1130
use main_menu_buttons("gui/button/menubuttons/template_idle.png",
[
[ _("Help"), ShowMenu("help") ],
[ _("About"), ShowMenu("about") ],
[ _("Gallery"), ShowMenu("cg_gallery") ],
[ _("Mods"), ShowMenu("mod_menu") ],
[ _("Return"), ShowMenu("main_menu") ]
[ "Help", ShowMenu("help") ],
[ "About", ShowMenu("about") ],
[ "Gallery", ShowMenu("cg_gallery") ],
[ "Mods", ShowMenu("mod_menu") ],
[ "Return", ShowMenu("main_menu") ]
] )
add Null(0, 129)
@ -1764,10 +1755,10 @@ screen quick_menu():
yalign 0.975
use quick_buttons("gui/button/uioptionbuttons/template_idle.png", \
[ \
[ _("Back"), Rollback() ], \
[ _("Skip"), Skip() ], \
[ _("Auto"), Preference("auto-forward", "toggle") ], \
[ _("Menu"), ShowMenu() ] \
[ "Back", Rollback() ], \
[ "Skip", Skip() ], \
[ "Auto", Preference("auto-forward", "toggle") ], \
[ "Menu", ShowMenu() ] \
] )
screen extrasnavigation(): #Updates are removed (not even supported by Ren'Py)
@ -1786,11 +1777,11 @@ screen extrasnavigation(): #Updates are removed (not even supported by Ren'Py)
yalign 0.9
use main_menu_buttons("gui/button/menubuttons/template_idle.png",
[
[ _("Help"), ShowMenu("help") ],
[ _("About"), ShowMenu("about") ],
[ _("Gallery"), ShowMenu("cg_gallery") ],
[ _("Mods"), ShowMenu("mod_menu") ],
[ _("Return"), ShowMenu("main_menu") ]
[ "Help", ShowMenu("help") ],
[ "About", ShowMenu("about") ],
[ "Gallery", ShowMenu("cg_gallery") ],
[ "Mods", ShowMenu("mod_menu") ],
[ "Return", ShowMenu("main_menu") ]
] )
style radio_button:

View File

@ -51,14 +51,6 @@ init python:
if persistent.autoup == None:
persistent.autoup = False
if persistent.bonus_chapters == None:
if renpy.seen_image("big ending"): #for returning players
persistent.bonus_chapters = 0b111111111
persistent.old_bonus_chapters = 0b111111111
else:
persistent.bonus_chapters = 0b0
persistent.old_bonus_chapters = 0b0
def randomize_choices(choices):
# fine for size of 2
if (renpy.random.randint(0, 1)):
@ -324,7 +316,6 @@ transform scloserleft:
label start:
$ fangscore = 0
$ anonscore = 0
$ tradwife = False
$ wingStory = False
pause 1.0
call storyline from _call_storyline

View File

@ -449,7 +449,7 @@ label chapter_11:
# Doomer ending skips this segment
call get_ending from _call_get_ending
if _return == 2:
if _return == Endings.Doomer:
stop music fadeout 3
pause 2
jump lPromAnnouncement
@ -586,12 +586,12 @@ label chapter_11:
pause .5
call get_ending from _call_get_ending_1
if _return == 4:
jump lSortingThings # Golden
elif _return == 3:
jump lMendingThings # Tradwife
if _return == Endings.Golden:
jump lSortingThings
elif _return == Endings.Tradwife:
jump lMendingThings
else:
jump lBreakingThings # Shooter
jump lBreakingThings # All else fails, go to shooter.
label lSortingThings:
@ -5212,7 +5212,7 @@ label chapter_11:
pause .5
call get_ending from _call_get_ending_2
if _return == 3: #tradwife
if _return == Endings.Tradwife:
"Things are going pretty well. When we discount Trishs weekly attempt to talk with Fang."
@ -5467,99 +5467,101 @@ label chapter_11:
"{cps=*.1}...{/cps}"
call get_ending from _call_get_ending_3
if _return != 1: # any route except Shooter
# duplicated segment from 11B, 11C and 11D transplanted here
window hide
window auto
pause .5
if _return == Endings.Shooter:
return
# the following segment makes sense in the context of 11B+11C+11D
window hide
window auto
pause .5
play music "audio/OST/Appreciating her Company.ogg" fadein 1.0
pause .5
play music "audio/OST/Appreciating her Company.ogg" fadein 1.0
pause .5
"About fifteen minutes into the assignment, the two of us are just about done."
"About fifteen minutes into the assignment, the two of us are just about done."
"Were making surprisingly good time."
"Were making surprisingly good time."
show fang considering with Dissolve(.25)
F "Uhm{cps=*.1}...{/cps} and you said that the electrons hold the negative charge, right?"
show fang considering with Dissolve(.25)
F "Uhm{cps=*.1}...{/cps} and you said that the electrons hold the negative charge, right?"
A "Yeah, yeah."
A "Yeah, yeah."
show fang unimpressed with Dissolve(.25)
F "Cant imagine when Id be using this crap in real life."
show fang unimpressed with Dissolve(.25)
F "Cant imagine when Id be using this crap in real life."
A "You never know, you might shrink one day."
A "You never know, you might shrink one day."
show fang happy with Dissolve(.25)
F "Yeah, and you might stop pretending youre livestreaming on Yousnoot."
pause .5
show fang happy with Dissolve(.25)
F "Yeah, and you might stop pretending youre livestreaming on Yousnoot."
pause .5
A "As far as you know I might be giving you incorrect answers, you know."
A "As far as you know I might be giving you incorrect answers, you know."
F "Mhm, sure."
pause .5
F "Mhm, sure."
pause .5
"The teacher is making his rounds checking on the students and gets to our desks."
window hide
window auto
"The teacher is making his rounds checking on the students and gets to our desks."
window hide
window auto
show farnsworth:
yalign 0.1 xalign 1.6
show farnsworth:
easein_cubic 1 xalign 1.2
with dissolve
pause .5
show farnsworth:
yalign 0.1 xalign 1.6
show farnsworth:
easein_cubic 1 xalign 1.2
with dissolve
pause .5
Drf "Hello, Anon. Fang."
Drf "Hello, Anon. Fang."
Drf "Are you two getting along well?"
Drf "Are you two getting along well?"
AnonAndFang "Yes, Doctor Fernsworth."
AnonAndFang "Yes, Doctor Fernsworth."
Drf "Great to hear."
pause .5
Drf "Great to hear."
pause .5
Drf "You know, Im real proud of you two."
pause .5
Drf "You know, Im real proud of you two."
pause .5
Drf "I remember at the start of the year you were at each other's throats."
Drf "I remember at the start of the year you were at each other's throats."
Drf "And now look at you!"
pause .5
Drf "And now look at you!"
pause .5
show anon concerned
show fang sad
with dissolve
"The two of us cringe."
pause .5
show anon concerned
show fang sad
with dissolve
"The two of us cringe."
pause .5
A "Uhh{cps=*.1}...{/cps} Yeah, thanks."
A "Uhh{cps=*.1}...{/cps} Yeah, thanks."
Drf "At any rate, you two understand the material, right?"
Drf "At any rate, you two understand the material, right?"
show anon happy
show fang neutral
with dissolve
A "Oh yeah, Fang and I are fine."
show anon happy
show fang neutral
with dissolve
A "Oh yeah, Fang and I are fine."
show anon neutral with Dissolve(.25)
A "I was just helping them with a few problems."
pause .5
show anon neutral with Dissolve(.25)
A "I was just helping them with a few problems."
pause .5
"Phew, remembered it this time."
"Phew, remembered it this time."
Drf "Good, good."
Drf "Good, good."
Drf "I wont keep you any longer then."
Drf "I wont keep you any longer then."
show farnsworth:
easeout_cubic 1 xalign 1.6
pause .5
hide farnsworth with dissolve
show farnsworth:
easeout_cubic 1 xalign 1.6
pause .5
hide farnsworth with dissolve
"Fernsworth meanders to pester the next few students."
pause .5
"Fernsworth meanders to pester the next few students."
pause .5
A "Anyways, where were we?"
A "Anyways, where were we?"
return

View File

@ -312,7 +312,7 @@ label chapter_12B:
scene biglydie
show fang happy flip:
yalign -0.65 xalign 0.8
show anon concerned:
show anon neutral:
yalign -0.55 xalign 0.2
with Dissolve(1)
pause .5
@ -320,8 +320,9 @@ label chapter_12B:
"The earplugs were not helping. At all."
"Im pretty sure I just went deaf."
pause .5
show anon neutral with Dissolve(1)
"There are about a hundred to a hundred fifty of the concert-goers, give or take."
@ -591,4 +592,4 @@ label chapter_12B:
window auto
pause 1
return
return

View File

@ -2481,7 +2481,7 @@ label chapter_5:
F "Sure, sure."
F "Anyway, Ill be seeing ya, Anon."
F"Anyway, Ill be seeing ya, Anon."
pause .5
A "Yeah{cps=*.1}...{/cps} See you{cps=*.1}...{/cps}"
@ -3413,6 +3413,8 @@ label chapter_5:
if _value != "Snot":
renpy.jump(_value+chr(0x61+_tick))
$ wingStory = True
F "And the worst part is he cant even hate me."
pause .5
@ -3584,7 +3586,6 @@ label chapter_5:
$ fangscore += 1
$ anonscore += 1
$ wingStory = True
A "{cps=*.1}...{/cps}"
pause .25

View File

@ -612,6 +612,4 @@ label chapter_x1:
scene black with Dissolve(2)
pause 1.5
$ persistent.bonus_chapters |= (0b1 << 0)
return

View File

@ -6,7 +6,7 @@ label chapter_x2:
scene black with Dissolve(2)
pause 1
scene skinrow
scene skinrow
show anon neutral flip:
yalign 0.1 xalign 0.7
show black
@ -62,7 +62,7 @@ label chapter_x2:
pause .5
A "Ive been living here for almost seven months and I wouldnt trade it for anywhere else in the state."
show anon neutral flip with dissolve
A "So lets head on inside for the grand tour!"
window hide
@ -71,7 +71,7 @@ label chapter_x2:
show black with Dissolve(1)
scene room anon day alt
scene room anon day alt
show viewfinder
show rec:
ypos 0.072 xpos 0.91
@ -104,7 +104,7 @@ label chapter_x2:
window hide
window auto
pause .5
show anon shrug behind viewfinder:
yalign 0.1 xalign -0.4
show anon:
@ -275,7 +275,7 @@ label chapter_x2:
easeout_cubic 1 xalign -0.2
pause .5
hide anon with dissolve
play sound 'audio/effects/doorslam.ogg'
pause .1
window show Dissolve(0.0001)
@ -309,7 +309,7 @@ label chapter_x2:
"{cps=*.1}...{/cps}"
A "OH, YOU FUCKING KNOW, STELLA!"
show fang:
easein_cubic 1.5 xalign 0.5
F "PFFFFFFT."
@ -348,8 +348,8 @@ label chapter_x2:
"{cps=*.1}.........{/cps}"
A "Apology not accepted!"
A "Apology not accepted!"
A "Oh and by the way your husbando is shit!"
pause .5
@ -370,7 +370,7 @@ label chapter_x2:
pause 1
A "Ugh{cps=*.1}...{/cps} I need a smo-"
show anon neutral with Dissolve(.25)
A "Wait."
pause .5
@ -405,6 +405,4 @@ label chapter_x2:
scene black with Dissolve(1.5)
pause 2
$ persistent.bonus_chapters |= (0b1 << 1)
return
return

View File

@ -304,7 +304,4 @@ label chapter_x3:
scene black with Dissolve(2)
pause 1.5
$ persistent.bonus_chapters |= (0b1 << 2)
return

View File

@ -42,7 +42,7 @@ label chapter_x4:
easein_cubic 1 xalign 0.05
show fang very happy with Dissolve(.25)
F "I dunno but it's awesome! A real venue this time!"
show dimmer_lighter behind trish with dissolve
"It takes a second to actually register it."
@ -56,7 +56,7 @@ label chapter_x4:
show trish:
easein_cubic 1 xalign 0.75
with None
show trish very happy flip
show trish very happy flip
hide dimmer_lighter
with dissolve
T "Our chance to make VVURM DRAMA the hit it deserves to be!"
@ -197,7 +197,7 @@ label chapter_x4:
T "A trick probably."
pause .5
show dimmer_light behind trish
show dimmer_light behind trish
show trish unimpressed flip
with dissolve
pause .5
@ -219,7 +219,7 @@ label chapter_x4:
show trish happy flip
with Dissolve(.25)
T "Sounds like a plan. We have to prepare for our biggest show yet!"
show fang happy with Dissolve(.25)
pause .5
@ -234,7 +234,7 @@ label chapter_x4:
"I hand Fang the blue strat, which they immediately set to tuning just right."
"Mr. Jingo really needs to get some new gear, these things arent maintained at all."
stop music fadeout 4
pause .5
"Even this bass, no one ever even uses it."
@ -245,6 +245,4 @@ label chapter_x4:
window auto
pause 2
$ persistent.bonus_chapters |= (0b1 << 3)
return
return

View File

@ -5,7 +5,7 @@ label chapter_x5:
stop music fadeout(3)
scene black with Dissolve(2)
pause 1
# skinrow soul?
# summertime synth?
play music 'audio/ost/skinrow soul.ogg' fadein 0.5
@ -71,7 +71,7 @@ label chapter_x5:
Re "We all make mistakes, amigo. Like{cps=*.1}...{/cps} like 'member that time I caught the cooking class on fire?"
T "Yeah, yeah, can't cook to save your life. That doesn't make me feel any less shitty."
T "Yeah, yeah, can't cook to save your life. That doesn't make me feel any less shitty."
Re "Just makes us people, s'all. We all make 'em and we all gotta fix 'em, y'know?"
pause .5
@ -267,7 +267,7 @@ label chapter_x5:
Re "BESIDES! King Rex can't be the only dude there without a date!"
show reed neutral
show trish smile flip
show trish smile flip
with dissolve
"I shake my head and let a laugh escape."
@ -340,6 +340,4 @@ label chapter_x5:
pause 2
$ persistent.bonus_chapters |= (0b1 << 4)
return
return

View File

@ -1417,6 +1417,4 @@ label chapter_x6:
window auto
pause 2
$ persistent.bonus_chapters |= (0b1 << 5)
return

View File

@ -850,7 +850,7 @@ label chapter_x7:
subpixel True
ease_quad 4 zoom 1.3 xpos 810
pause 2.5
@ -891,7 +891,7 @@ label chapter_x7:
pause .5
scene home fang day alt:
xalign 0.5 zoom 1.2
xalign 0.5 zoom 1.2
ease_cubic 1 zoom 1
show dimmer_lighter:
alpha 1
@ -1230,12 +1230,12 @@ label chapter_x7:
easein_cubic 1.5 xalign 0.75
parallel:
linear 0.5 alpha 1
show naser:
show naser:
parallel:
easein_cubic 1.5 xalign 3.5
parallel:
linear 0.5 alpha 0
show naomi:
show naomi:
parallel:
easein_cubic 1.5 xalign 2.0
parallel:
@ -1720,7 +1720,7 @@ label chapter_x7:
show naser neutral flip with dissolve
pause .5
show naser considering flip with dissolve
show chadshark with dissolve
show chadshark:
easein_cubic 0.25 yalign 0.03
@ -2092,6 +2092,4 @@ label chapter_x7:
scene black with Dissolve(2)
pause 2
$ persistent.bonus_chapters |= (0b1 << 6)
return
return

View File

@ -293,19 +293,19 @@ label chapter_x8:
show naomi:
easein_cubic 1.5 xalign 0.8
pause 1
linear 0.045 yalign -0.002
linear 0.045 yalign -0.002
linear 0.045 yalign 0.002
linear 0.045 yalign -0.004
linear 0.045 yalign -0.004
linear 0.045 yalign 0.004
linear 0.045 yalign -0.005
linear 0.045 yalign -0.005
linear 0.045 yalign 0.005
linear 0.045 yalign -0.005
linear 0.045 yalign -0.005
linear 0.045 yalign 0.005
linear 0.045 yalign -0.005
linear 0.045 yalign -0.005
linear 0.045 yalign 0.005
linear 0.045 yalign -0.004
linear 0.045 yalign -0.004
linear 0.045 yalign 0.004
linear 0.045 yalign -0.002
linear 0.045 yalign -0.002
linear 0.045 yalign 0.002
pause 0.5
easeout_cubic 0.8 yalign -0.3
@ -538,7 +538,4 @@ label chapter_x8:
window hide
window auto
pause 2
$ persistent.bonus_chapters |= (0b1 << 7)
return

View File

@ -1044,7 +1044,7 @@ label chapter_x9:
F "Good night Anon."
$ renpy.music.queue('audio/OST/good faith synth finale end.ogg', channel=u'music', loop=None, clear_queue=True)
queue music "<silence 1.0>" loop
queue music "<silence 1.0>" loop
A "Night Lucy."
@ -1084,7 +1084,4 @@ label chapter_x9:
window auto
pause 2
$ renpy.music.set_volume(1.0, 0, 'music')
$ persistent.bonus_chapters |= (0b1 << 8)
return

View File

@ -1,311 +1,294 @@
# Don't remove init offset as that breaks translations for some reason
init 999 python:
#don't do a halo infinite moment
#hard code the header & footer
#then iterate the list_credits
list_og_credits = {
_('Coded By:'): [
'/dev/non',
"[[Untitled] Anon",
'Schizodev Anon',
'Starmanon',
'Nutbuster Anon',
'Inhumanon',
'Spigot the Bear Anon'
],
_('Written by:'): [
'AVGN Anon',
'Coomer Anon',
'/trash/ Anon',
'FreemAnon',
'Ccp Anon',
'Kokichi Anon',
'Alex Anon',
'Punished Anon',
'Finn Anon'
],
_('Story by:'): [
'AVGN Anon',
'Coomer Anon',
'Alex Anon',
'Singularity Anon',
'Tombstone Anon'
],
_('Production Designer'): [
'Alex Anon'
],
_('Artwork by:'): [
'Alex Anon',
'Mormon Anon',
'Ccp Anon',
'Aome Anon',
'/trash/ Anon',
'Skeleton Anon',
'eyeh Xinnix Anon',
'Brit Anon',
'Dark-N-Wolf Anon',
'Hotel Anon',
'Multi Anon',
'Ionanon'
],
_('Additional Artwork by:'): [
_('Backup Anon 1'),
_('Backup Anon 2'),
_('Backup Anon 3'),
_('Backup Anon 4'),
_('Backup Anon 5'),
_('Backup Anon 6'),
],
_("\"Love theme\" by:"): [
_('Only Person In The Team With A\nPortfolio/Experience Anon'),
],
_('Music By'): [
'Shampoo Anon',
'Melo Anon'
],
_('Egg Hunt Contest\nWinner:'): [
'Olivia Anon'
],
_('Character Design\nContest Winner:'): [
'Mono Anon',
],
_('Special Thanks:'): [
'Commission Anon',
]
}
# The difference between adding in the special thanks and not I have found is about 480px, just to note down.
list_translator_credits = {
_('Translators (Spanish):'): [
'Queso2033 Anon',
'TheShadowTrAnon'
],
_('Translators (Russian):'): [
'Gexahord',
'strelook21',
'YtkaGen',
'DatFeelFrog',
'CMDR Andrea Dornan'
],
_('Proofreaders (Spanish):'): [
'ElBan Anón',
'GMAnon'
],
_('Proofreaders (Russian):'): [
'Gexahord',
'strelook21',
'YtkaGen',
'DatFeelFrog'
],
_('Asset help (Spanish):'): [
'Arkiangelo Anon'
],
_('Asset help (Russian):'): [
'Gexahord',
'YtkaGen',
'2ch Anon'
]
}
textlist = []
alignargs = {'xalign': 0.5, 'yalign': 0.5, 'text_align': 0.5}
#sizes in px
SIZE_SNOT_GAMES = 68*3+10
SIZE_TITLE = 32*3+10
SIZE_ENTRY = 22*3+10
SIZE_TL = 22*2+10
SIZE_ENDER = 52*3+10
#there is line_spacing but don't usei t
textlist.append(Text(_("Snoot Game"), size=SIZE_SNOT_GAMES, **alignargs))
textlist.append(Null(1, 16*1))
textlist.append(Text(_("By CaveManon"), size=SIZE_TITLE, **alignargs))
textlist.append(Null(1, 16*18))
textlist.append(Text(_("developed in Ren'py"), size=SIZE_ENTRY, **alignargs))
textlist.append(Null(1, 16*12))
for key, arr in list_og_credits.items():
textlist.append(Text(key, size=SIZE_TITLE, **alignargs))
textlist.append(Null(1, 16*6))
concatstr = ""
for item in arr:
concatstr += __(item) + '\n'
textlist.append(Text(concatstr, size=SIZE_ENTRY, **alignargs))
textlist.append(Null(1, 16*2))
#smaller font and gridonate for translators
TL_WIDTH = 2
TL_HEIGHT = (len(list_translator_credits)+1)//2
tgrid = []
for key, arr in list_translator_credits.items():
vb = []
vb.append(Text(key, size=SIZE_ENTRY, **alignargs))
vb.append(Null(1, 16*6))
concatstr = ""
for item in arr:
concatstr += item + '\n'
vb.append(Text(concatstr, size=SIZE_TL, **alignargs))
vb.append(Null(1, 16*2))
vb = VBox(*vb)
tgrid.append(vb)
for x in range(len(tgrid), TL_WIDTH*TL_HEIGHT):
tgrid.append(Null())
pass
tgrid = Grid(TL_WIDTH, TL_HEIGHT, *tgrid)
textlist.append(tgrid)
textlist.append(Null(1, 16*12)) #check
textlist.append(Text(_("T H E E N D"), size=SIZE_ENDER, **alignargs))
textlist.append(Null(1, 16*4))
textlist.append(Text(_("Snoot game started development\n on June 19, 2020"), size=SIZE_ENTRY, **alignargs))
credits_hbox = Fixed(VBox(*textlist, xalign=0.5), xalign=0.5)
renpy.image('credits_hbox', credits_hbox)
#
label test_credits:
scene black
stop ambient
#play music '<loop 12.809525>audio/abloop.wav'
"test"
window auto hide
pause 0.5
show c_credits_text:
crop (0, 0, 1920, 670)
pause 1.1
show c_credits_text:
crop None
pause 2.75
show credits_base at Pan((0, -1080),(0, 8100), 65) behind c_credits_text:
subpixel True
show c_credits_text at Pan((0, 0),(0, 12155), 65):
crop None
subpixel True
#pause 50
#queue music "audio/abend.wav" noloop
pause
scene black with Dissolve(3)
# Credits definitions moved here so everything that needs to be changed is is one place.
# Anytime the credits changes to include more translators, you're just going to have to guess what the correct
# value to offset everything is again. Mainly concerning values that control the panning destination of credits text,
# and the height of the credits text itself
# My recommendation is to imagine a square on top of the "T" in "THE END"
# The square is as long as one of those characters, and the top of the square should touch the top of the screen
# when the credits stop scrolling
# Someone please come up with an exact formula pls
# Remember, ending sketch is always +550 of when the Pan stops
image credits_coverup:
"black"
crop (0, 0, 1920, 1080)
image b_credits_text = Composite(
(1920, 13235),
(0, 390), "credits_hbox",
(0, 12705), "b_sketch"
)
image c_credits_text = Composite(
(1920, 13235),
(0, 390), "credits_hbox",
(0, 12705), "c_sketch"
)
image d_credits_text = Composite(
(1920, 13235),
(0, 390), "credits_hbox",
(0, 12705), "d_sketch"
)
label lending:
call get_ending from _call_get_ending_4
if _return == 4:
pause 0.5
show snootgame_big with dissolve: # Renpy not allowing you to grab images from the gui folder is serious bullshit
subpixel True
xalign 0.5
yalign 0.5
linear 6 zoom 1.2
pause 1.75
show d_credits_text with dissolve:
subpixel True
crop (0, 670, 1920, 1080)
ypos 670
xalign 0.5
linear 3 zoom 1.1
pause 2
hide d_credits_text
hide snootgame_big
with dissolve
show credits_base at Pan((0, -1080),(0, 8100), 65):
subpixel True
show d_credits_text at Pan((0, 0),(0, 12155), 65):
subpixel True
show credits_coverup at Pan((0, 0),(0, 12155), 65):
subpixel True
pause 50
queue music 'audio/OST/amberlight brillance live end.ogg'
queue music "<silence 1.0>" loop
elif _return == 3:
play music "audio/OST/Dino Destiny Reader.ogg"
pause 0.5
show c_credits_text:
crop (0, 0, 1920, 670)
pause 1.1
show c_credits_text:
crop None
pause 2.75
show credits_base at Pan((0, -1080),(0, 8100), 65) behind c_credits_text:
subpixel True
show c_credits_text at Pan((0, 0),(0, 12155), 65):
crop None
subpixel True
else:
play music "audio/OST/Dino Destiny Reader.ogg"
pause 0.5
show b_credits_text:
crop (0, 0, 1920, 670)
pause 1.1
show b_credits_text:
crop None
pause 2.75
show credits_base at Pan((0, -1080),(0, 8100), 65) behind b_credits_text:
subpixel True
show b_credits_text at Pan((0, 0),(0, 12155), 65):
crop None
subpixel True
pause
stop music fadeout 5
scene black with Dissolve(3)
pause 2
if tradwife:
scene c10 with Dissolve(1.5)
pause 20
scene black with Dissolve(2)
pause 1
elif anonscore >= 4 and fangscore >= 4:
scene golden ending with Dissolve(1.5)
pause 20
scene black with Dissolve(2)
pause 1
return
# Don't remove init offset as that breaks translations for some reason
init 999 python:
#don't do a halo infinite moment
#hard code the header & footer
#then iterate the list_credits
list_og_credits = {
_('Coded By:'): [
'/dev/non',
"[[Untitled] Anon",
'Schizodev Anon',
'Starmanon',
'Nutbuster Anon',
'Inhumanon',
'Spigot the Bear Anon'
],
_('Written by:'): [
'AVGN Anon',
'Coomer Anon',
'/trash/ Anon',
'FreemAnon',
'Ccp Anon',
'Kokichi Anon',
'Alex Anon',
'Punished Anon',
'Finn Anon'
],
_('Story by:'): [
'AVGN Anon',
'Coomer Anon',
'Alex Anon',
'Singularity Anon',
'Tombstone Anon'
],
_('Production Designer'): [
'Alex Anon'
],
_('Artwork by:'): [
'Alex Anon',
'Mormon Anon',
'Ccp Anon',
'Aome Anon',
'/trash/ Anon',
'Skeleton Anon',
'eyeh Xinnix Anon',
'Brit Anon',
'Dark-N-Wolf Anon',
'Hotel Anon',
'Multi Anon',
'Ionanon'
],
_('Additional Artwork by:'): [
_('Backup Anon 1'),
_('Backup Anon 2'),
_('Backup Anon 3'),
_('Backup Anon 4'),
_('Backup Anon 5'),
_('Backup Anon 6'),
],
_("\"Love theme\" by:"): [
_('Only Person In The Team With A\nPortfolio/Experience Anon'),
],
_('Music By'): [
'Shampoo Anon',
'Melo Anon'
],
_('Egg Hunt Contest\nWinner:'): [
'Olivia Anon'
],
_('Character Design\nContest Winner:'): [
'Mono Anon',
],
_('Special Thanks:'): [
'Commission Anon',
]
}
# The difference between adding in the special thanks and not I have found is about 480px, just to note down.
list_translator_credits = {
_('Translators (Spanish):'): [
'Queso2033 Anon',
'TheShadowTrAnon'
],
_('Proofreaders (Spanish):'): [
'ElBan Anón',
'GMAnon'
],
_('Asset help (Spanish):'): [
'Arkiangelo Anon'
]
}
textlist = []
alignargs = {'xalign': 0.5, 'yalign': 0.5, 'text_align': 0.5}
#sizes in px
SIZE_SNOT_GAMES = 68*3+10
SIZE_TITLE = 32*3+10
SIZE_ENTRY = 26*3+10
SIZE_TL = 26*2+10
SIZE_ENDER = 52*3+10
#there is line_spacing but don't usei t
textlist.append(Text(_("Snoot Game"), size=SIZE_SNOT_GAMES, **alignargs))
textlist.append(Null(1, 16*1))
textlist.append(Text(_("By CaveManon"), size=SIZE_TITLE, **alignargs))
textlist.append(Null(1, 16*18))
textlist.append(Text(_("developed in Ren'py"), size=SIZE_ENTRY, **alignargs))
textlist.append(Null(1, 16*12))
for key, arr in list_og_credits.items():
textlist.append(Text(key, size=SIZE_TITLE, **alignargs))
textlist.append(Null(1, 16*6))
concatstr = ""
for item in arr:
concatstr += __(item) + '\n'
textlist.append(Text(concatstr, size=SIZE_ENTRY, **alignargs))
textlist.append(Null(1, 16*2))
#smaller font and gridonate for translators
TL_WIDTH = 2
TL_HEIGHT = (len(list_translator_credits)+1)//2
tgrid = []
for key, arr in list_translator_credits.items():
vb = []
vb.append(Text(key, size=SIZE_ENTRY, **alignargs))
vb.append(Null(1, 16*6))
concatstr = ""
for item in arr:
concatstr += item + '\n'
vb.append(Text(concatstr, size=SIZE_TL, **alignargs))
vb.append(Null(1, 16*2))
vb = VBox(*vb)
tgrid.append(vb)
for x in range(len(tgrid), TL_WIDTH*TL_HEIGHT):
tgrid.append(Null())
pass
tgrid = Grid(TL_WIDTH, TL_HEIGHT, *tgrid)
textlist.append(tgrid)
textlist.append(Null(1, 16*12)) #check
textlist.append(Text(_("T H E E N D"), size=SIZE_ENDER, **alignargs))
textlist.append(Null(1, 16*4))
textlist.append(Text(_("Snoot game started development\n on June 19, 2020"), size=SIZE_ENTRY, **alignargs))
credits_hbox = Fixed(VBox(*textlist, xalign=0.5), xalign=0.5)
renpy.image('credits_hbox', credits_hbox)
#
label test_credits:
scene black
stop ambient
#play music '<loop 12.809525>audio/abloop.wav'
"test"
window auto hide
pause 0.5
show c_credits_text:
crop (0, 0, 1920, 670)
pause 1.1
show c_credits_text:
crop None
pause 2.75
show credits_base at Pan((0, -1080),(0, 8100), 65) behind c_credits_text:
subpixel True
show c_credits_text at Pan((0, 0),(0, 12155), 65):
crop None
subpixel True
#pause 50
#queue music "audio/abend.wav" noloop
pause
scene black with Dissolve(3)
# Credits definitions moved here so everything that needs to be changed is is one place.
# Anytime the credits changes to include more translators, you're just going to have to guess what the correct
# value to offset everything is again. Mainly concerning values that control the panning destination of credits text,
# and the height of the credits text itself
# My recommendation is to imagine a square on top of the "T" in "THE END"
# The square is as long as one of those characters, and the top of the square should touch the top of the screen
# when the credits stop scrolling
# Someone please come up with an exact formula pls
# Remember, ending sketch is always +550 of when the Pan stops
image credits_coverup:
"black"
crop (0, 0, 1920, 1080)
image b_credits_text = Composite(
(1920, 13235),
(0, 390), "credits_hbox",
(0, 12705), "b_sketch"
)
image c_credits_text = Composite(
(1920, 13235),
(0, 390), "credits_hbox",
(0, 12705), "c_sketch"
)
image d_credits_text = Composite(
(1920, 13235),
(0, 390), "credits_hbox",
(0, 12705), "d_sketch"
)
label lending:
call get_ending from _call_get_ending_4
$ cached_ending = _return # un-necessary to call this so many times
if cached_ending == Endings.Golden:
pause 0.5
show snootgame_big with dissolve: # Renpy not allowing you to grab images from the gui folder is serious bullshit
subpixel True
xalign 0.5
yalign 0.5
linear 6 zoom 1.2
pause 1.75
show d_credits_text with dissolve:
subpixel True
crop (0, 670, 1920, 1080)
ypos 670
xalign 0.5
linear 3 zoom 1.1
pause 2
hide d_credits_text
hide snootgame_big
with dissolve
show credits_base at Pan((0, -1080),(0, 8100), 65):
subpixel True
show d_credits_text at Pan((0, 0),(0, 12155), 65):
subpixel True
show credits_coverup at Pan((0, 0),(0, 12155), 65):
subpixel True
pause 50
queue music 'audio/OST/amberlight brillance live end.ogg'
queue music "<silence 1.0>" loop
elif cached_ending == Endings.Tradwife:
play music "audio/OST/Dino Destiny Reader.ogg"
pause 0.5
show c_credits_text:
crop (0, 0, 1920, 670)
pause 1.1
show c_credits_text:
crop None
pause 2.75
show credits_base at Pan((0, -1080),(0, 8100), 65) behind c_credits_text:
subpixel True
show c_credits_text at Pan((0, 0),(0, 12155), 65):
crop None
subpixel True
else:
play music "audio/OST/Dino Destiny Reader.ogg"
pause 0.5
show b_credits_text:
crop (0, 0, 1920, 670)
pause 1.1
show b_credits_text:
crop None
pause 2.75
show credits_base at Pan((0, -1080),(0, 8100), 65) behind b_credits_text:
subpixel True
show b_credits_text at Pan((0, 0),(0, 12155), 65):
crop None
subpixel True
pause
stop music fadeout 5
scene black with Dissolve(3)
pause 2
if cached_ending == Endings.Tradwife:
scene c10 with Dissolve(1.5)
pause 20
scene black with Dissolve(2)
pause 1
elif cached_ending == Endings.Golden:
scene golden ending with Dissolve(1.5)
pause 20
scene black with Dissolve(2)
pause 1
return

View File

@ -59,9 +59,6 @@ screen ex_ch_menu():
for i in range(8, 8-w, -1):
ex_chapters_menu.remove(ex_chapters[i])
ex_chapters_menu.pop()
else:
if not (persistent.bonus_chapters == 0b111111111):
ex_chapters_menu.pop()
tag menu
style_prefix "main_menu"

View File

@ -1,130 +1,129 @@
init offset = -1
screen OkPrompt(message, go_menu):
modal True
zorder 200
style_prefix "confirm"
add "gui/overlay/confirm.png"
frame:
vbox:
xalign .5
yalign .5
spacing 30
label _(message):
style "confirm_prompt"
xalign 0.5
hbox:
xalign 0.5
spacing 100
textbutton _("OK") activate_sound "audio/ui/uiClick.wav" action If(go_menu, true=MainMenu(False,False), false=Hide())
default persistent.seenWarning = []
init python:
from math import ceil
notice = _("NOTICE: Please keep in mind this is a fan translation, and as such it may not be completely accurate to the original intent of any written lines.")
languages = [
{'image': 'gui/flag/USofA.png', 'name': 'English', 'value': None },
{'image': 'gui/flag/Mexico.png', 'name': 'Español', 'value': 'es'},
{'image': 'gui/flag/Rus.png', 'name': 'Русский', 'value': 'ru'}
]
#This was done so it would work with whatever amount of languages you wanted, I tried it with up to 200 and it worked nicely.
maxItems = len(languages)
maxRows = ceil(maxItems/4)
if maxItems > 4:
maxItems = 4*maxRows
init:
transform renpysdumb: # Needed to scale down the imagebuttons.
zoom 0.5
transform icon: #For the preferences screen
truecenter
zoom 0.1
transform glowie(img):
img
easein_cubic 0.30 matrixcolor TintMatrix(Color((255, 255, 255)))
transform darkie(img):
img
easeout_cubic 0.30 matrixcolor TintMatrix(Color((255/2, 255/2, 255/2)))
screen lang_sel():
tag menu
frame:
background Transform(gui.main_menu_background, matrixcolor=TintMatrix('#222'))
padding (120, 40)
vbox:
style_prefix "navigation"
vbox:
label _("Choose Your Language") text_size 80
add Null(0, 40)
vpgrid:
if maxItems <= 4:
cols maxItems
rows 1
else:
cols 4
rows maxRows
#spacing 30
draggable True
mousewheel True
if maxRows > 3:
scrollbars "vertical"
for i in range(maxItems):
fixed:
xsize 400
ysize 300
vbox:
if i<len(languages):
text languages[i]["name"] at top
add Null(0,10)
imagebutton:
idle darkie(languages[i]["image"])
hover glowie(languages[i]["image"])
action If(languages[i]["value"] in persistent.seenWarning or languages[i]["value"] == None,
true = [Language(languages[i]["value"]), MainMenu(False,False)],
# Important to change the language before calling notice. Otherwise it will be in english.
false = [Language(languages[i]["value"]), AddToSet(set=persistent.seenWarning, value=languages[i]["value"]), Show(screen="OkPrompt", message=notice, go_menu=True)]
)
at renpysdumb # Scales the imagebutton down. No, you can't just specify the zoom here. It has to be a defined transform.
else:
# Renpy seethes if a vpgrid doesn't have the exact maximum amount of items for some reason.
add Null(0,0)
at truecenter
screen lang_button(lang):
hbox:
spacing 15
textbutton lang["name"]:
activate_sound "audio/ui/uiRollover.wav"
action If(lang["value"] in persistent.seenWarning or lang["value"] == None,
true = [Language(lang["value"])],
false = [Language(lang["value"]), AddToSet(set=persistent.seenWarning, value=lang["value"]), Show(screen="OkPrompt", message=notice, go_menu=False)]
)
if _preferences.language == lang["value"]:
add glowie(lang["image"]) at icon
else:
init offset = -1
screen OkPrompt(message, go_menu):
modal True
zorder 200
style_prefix "confirm"
add "gui/overlay/confirm.png"
frame:
vbox:
xalign .5
yalign .5
spacing 30
label _(message):
style "confirm_prompt"
xalign 0.5
hbox:
xalign 0.5
spacing 100
textbutton _("OK") activate_sound "audio/ui/uiClick.wav" action If(go_menu, true=MainMenu(False,False), false=Hide())
default persistent.seenWarning = []
init python:
from math import ceil
notice = _("NOTICE: Please keep in mind this is a fan translation, and as such it may not be completely accurate to the original intent of any written lines.")
languages = [
{'image': 'gui/flag/USofA.png', 'name': 'English', 'value': None },
{'image': 'gui/flag/Mexico.png', 'name': 'Español', 'value': 'es'}
]
#This was done so it would work with whatever amount of languages you wanted, I tried it with up to 200 and it worked nicely.
maxItems = len(languages)
maxRows = ceil(maxItems/4)
if maxItems > 4:
maxItems = 4*maxRows
init:
transform renpysdumb: # Needed to scale down the imagebuttons.
zoom 0.5
transform icon: #For the preferences screen
truecenter
zoom 0.1
transform glowie(img):
img
easein_cubic 0.30 matrixcolor TintMatrix(Color((255, 255, 255)))
transform darkie(img):
img
easeout_cubic 0.30 matrixcolor TintMatrix(Color((255/2, 255/2, 255/2)))
screen lang_sel():
tag menu
frame:
background Transform(gui.main_menu_background, matrixcolor=TintMatrix('#222'))
padding (120, 40)
vbox:
style_prefix "navigation"
vbox:
label _("Choose Your Language") text_size 80
add Null(0, 40)
vpgrid:
if maxItems <= 4:
cols maxItems
rows 1
else:
cols 4
rows maxRows
#spacing 30
draggable True
mousewheel True
if maxRows > 3:
scrollbars "vertical"
for i in range(maxItems):
fixed:
xsize 400
ysize 300
vbox:
if i<len(languages):
text languages[i]["name"] at top
add Null(0,10)
imagebutton:
idle darkie(languages[i]["image"])
hover glowie(languages[i]["image"])
action If(languages[i]["value"] in persistent.seenWarning or languages[i]["value"] == None,
true = [Language(languages[i]["value"]), MainMenu(False,False)],
# Important to change the language before calling notice. Otherwise it will be in english.
false = [Language(languages[i]["value"]), AddToSet(set=persistent.seenWarning, value=languages[i]["value"]), Show(screen="OkPrompt", message=notice, go_menu=True)]
)
at renpysdumb # Scales the imagebutton down. No, you can't just specify the zoom here. It has to be a defined transform.
else:
# Renpy seethes if a vpgrid doesn't have the exact maximum amount of items for some reason.
add Null(0,0)
at truecenter
screen lang_button(lang):
hbox:
spacing 15
textbutton lang["name"]:
activate_sound "audio/ui/uiRollover.wav"
action If(lang["value"] in persistent.seenWarning or lang["value"] == None,
true = [Language(lang["value"])],
false = [Language(lang["value"]), AddToSet(set=persistent.seenWarning, value=lang["value"]), Show(screen="OkPrompt", message=notice, go_menu=False)]
)
if _preferences.language == lang["value"]:
add glowie(lang["image"]) at icon
else:
add darkie(lang["image"]) at icon

View File

@ -23,26 +23,25 @@ label storyline:
call chapter_10 from _call_chapter_10
call chapter_11 from _call_chapter_11
call get_ending from _call_get_ending_5
if _return == 4:
if _return == Endings.Golden:
call chapter_11D from _call_chapter_11D
call chapter_12D from _call_chapter_12D
call chapter_12_5D from _call_chapter_12_5D
call chapter_13D from _call_chapter_13D
call chapter_14D from _call_chapter_14D
elif _return == 3:
$ tradwife = True
elif _return == Endings.Tradwife:
call chapter_11C from _call_chapter_11C
call chapter_12C from _call_chapter_12C
call chapter_12_5C from _call_chapter_12_5C
call chapter_13C from _call_chapter_13C
call chapter_14C from _call_chapter_14C
elif _return == 2:
elif _return == Endings.Doomer:
call chapter_11B from _call_chapter_11B
call chapter_12B from _call_chapter_12B
# no chapter_13 here since the scene is different enough to the other routes for everything to go into 13C
call chapter_13B from _call_chapter_13B
call chapter_14B from _call_chapter_14B
else:
else: # if all else fails, we just assume that we got Endings.Shooter
call chapter_11A from _call_chapter_11A
call chapter_12A from _call_chapter_12A
call chapter_12_5D from _call_chapter_12_5D_1

View File

@ -125,12 +125,6 @@ translate es strings:
old "You have unlocked all bonus chapters!"
new "¡Has desbloqueado todos los capítulos extra!"
old "You have unlocked the final bonus chapter!"
new "¡Has desbloqueado el último capítulo extra!"
old "You have finished all endings! Complete all bonus chapters to receive the final chapter!"
new "¡Haz conseguido todos los finales! ¡Completa el resto de capítulos extra para desbloquear el último!"
old "You have unlocked new bonus chapters, complete unseen endings to see more!"
new "Has desbloqueado nuevos capítulos extra, ¡Completa los finales no vistos para ver más!"

View File

@ -1,124 +1,113 @@
# TODO: Translation updated at 2022-11-16 11:05
# game/src/credits.rpy:161
translate es test_credits_3991e06e:
# "test"
"test"
translate es strings:
# game/src/credits.rpy:7
old "Coded By:"
new "Programado por:"
# game/src/credits.rpy:7
old "Written by:"
new "Escrito por:"
# game/src/credits.rpy:7
old "Story by:"
new "Historia por:"
# game/src/credits.rpy:7
old "Production Designer"
new "Diseñador de Producción:"
# game/src/credits.rpy:7
old "Artwork by:"
new "Ilustraciones por:"
# game/src/credits.rpy:7
old "Additional Artwork by:"
new "Ilustraciones Adicionales por"
# game/src/credits.rpy:7
old "Backup Anon 1"
new "Anon de respaldo 1"
# game/src/credits.rpy:7
old "Backup Anon 2"
new "Anon de respaldo 2"
# game/src/credits.rpy:7
old "Backup Anon 3"
new "Anon de respaldo 3"
# game/src/credits.rpy:7
old "Backup Anon 4"
new "Anon de respaldo 4"
# game/src/credits.rpy:7
old "Backup Anon 5"
new "Anon de respaldo 5"
# game/src/credits.rpy:7
old "Backup Anon 6"
new "Anon de respaldo 6"
# game/src/credits.rpy:7
old "\"Love theme\" by:"
new "\"Tema de Amor\" por:"
# game/src/credits.rpy:7
old "Only Person In The Team With A\nPortfolio/Experience Anon"
new "La Única Persona Con un\nPortafolio/Experiencia Anon"
# game/src/credits.rpy:7
old "Music By"
new "Música por"
# game/src/credits.rpy:7
old "Egg Hunt Contest\nWinner:"
new "Ganador del Concurso de la\nbúsqueda de Huevos:"
# game/src/credits.rpy:7
old "Character Design\nContest Winner:"
new "Ganador del Concurso de\nDiseño de Personajes"
# game/src/credits.rpy:75
old "Translators (Spanish):"
new "Traducción (Español):"
# game/src/credits.rpy:75
old "Translators (Russian):"
new "Traducción (Ruso):"
# game/src/credits.rpy:75
old "Proofreaders (Spanish):"
new "Revisado por (Español):"
# game/src/credits.rpy:75
old "Proofreaders (Russian):"
new "Revisado por (Ruso):"
# game/src/credits.rpy:75
old "Asset help (Spanish):"
new "Ayuda extra (Español):"
# game/src/credits.rpy:75
old "Asset help (Russian):"
new "Ayuda extra (Ruso):"
# game/src/credits.rpy:101
old "Snoot Game"
new "Snoot Game"
# game/src/credits.rpy:103
old "By CaveManon"
new "Por CaveManon"
# game/src/credits.rpy:105
old "developed in Ren'py"
new "desarrollado en Ren'py"
# game/src/credits.rpy:144
old "T H E E N D"
new "E L F I N"
# game/src/credits.rpy:146
old "Snoot game started development\n on June 19, 2020"
new "Snoot game comenzó su desarrollo\n en junio 19 del 2020"
old "Special Thanks:"
new "Agradecimientos especiales:"
# TODO: Translation updated at 2022-11-16 11:05
# game/src/credits.rpy:161
translate es test_credits_3991e06e:
# "test"
"test"
translate es strings:
# game/src/credits.rpy:7
old "Coded By:"
new "Programado por:"
# game/src/credits.rpy:7
old "Written by:"
new "Escrito por:"
# game/src/credits.rpy:7
old "Story by:"
new "Historia por:"
# game/src/credits.rpy:7
old "Production Designer"
new "Diseñador de Producción:"
# game/src/credits.rpy:7
old "Artwork by:"
new "Ilustraciones por:"
# game/src/credits.rpy:7
old "Additional Artwork by:"
new "Ilustraciones Adicionales por"
# game/src/credits.rpy:7
old "Backup Anon 1"
new "Anon de respaldo 1"
# game/src/credits.rpy:7
old "Backup Anon 2"
new "Anon de respaldo 2"
# game/src/credits.rpy:7
old "Backup Anon 3"
new "Anon de respaldo 3"
# game/src/credits.rpy:7
old "Backup Anon 4"
new "Anon de respaldo 4"
# game/src/credits.rpy:7
old "Backup Anon 5"
new "Anon de respaldo 5"
# game/src/credits.rpy:7
old "Backup Anon 6"
new "Anon de respaldo 6"
# game/src/credits.rpy:7
old "\"Love theme\" by:"
new "\"Tema de Amor\" por:"
# game/src/credits.rpy:7
old "Only Person In The Team With A\nPortfolio/Experience Anon"
new "La Única Persona Con un\nPortafolio/Experiencia Anon"
# game/src/credits.rpy:7
old "Music By"
new "Música por"
# game/src/credits.rpy:7
old "Egg Hunt Contest\nWinner:"
new "Ganador del Concurso de la\nbúsqueda de Huevos:"
# game/src/credits.rpy:7
old "Character Design\nContest Winner:"
new "Ganador del Concurso de\nDiseño de Personajes"
# game/src/credits.rpy:75
old "Translators (Spanish):"
new "Traducción (Español):"
# game/src/credits.rpy:75
old "Proofreaders (Spanish):"
new "Revisado por (Español):"
# game/src/credits.rpy:75
old "Asset help (Spanish):"
new "Ayuda extra (Español):"
# game/src/credits.rpy:101
old "Snoot Game"
new "Snoot Game"
# game/src/credits.rpy:103
old "By CaveManon"
new "Por CaveManon"
# game/src/credits.rpy:105
old "developed in Ren'py"
new "desarrollado en Ren'py"
# game/src/credits.rpy:144
old "T H E E N D"
new "E L F I N"
# game/src/credits.rpy:146
old "Snoot game started development\n on June 19, 2020"
new "Snoot game comenzó su desarrollo\n en junio 19 del 2020"
old "Special Thanks:"
new "Agradecimientos especiales:"

File diff suppressed because it is too large Load Diff

Binary file not shown.

Before

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 184 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 17 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 22 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 37 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 32 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 26 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 8.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 177 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 31 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 19 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 27 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 21 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 36 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 30 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 20 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 24 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 338 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 114 KiB

View File

@ -1,8 +0,0 @@
# TODO: Translation updated at 2022-10-24 02:14
translate ru strings:
# game/options.rpy:15
old "SnootGame"
new "SnootGame"

View File

@ -1,581 +0,0 @@
# TODO: Translation updated at 2022-10-24 02:14
translate ru strings:
old "Mr. Tsuki"
new "М-р Тсуки"
old "Chicxulub Gutterlane"
new "Чикшулубский кратер"
old "The Mous Pad"
new "Мус Пад"
old "PTA Meeting"
new "Родительское собрание"
old "Passion of the Trigga I"
new "Триггерский азарт I"
old "Passion of the Trigga II"
new "Триггерский азарт II"
old "Passion of the Trigga III"
new "Триггерский азарт III"
old "Naomi's Tribulations I"
new "Злоключения Наоми I"
old "Naomi's Tribulations II"
new "Злоключения Наоми II"
old "Naomi's Tribulations III"
new "Злоключения Наоми III"
old "RAYmba's Observations"
new "Наблюдения РЭЙмбы"
old "Performance"
new "Производительность"
old "Cache Surfaces"
new "Кэш изображений"
old "You have no mods! \nInstall some in:\n\"[moddir]\""
new "У вас нет модов! \nУстановите их в:\n\"[moddir]\""
old "Animations"
new "Анимации"
old "Lewd"
new "Непристойности"
old "Fullbody"
new "Персонажи"
old "Backgrounds"
new "Фоны"
old "Back"
new "Назад"
old "Choose Your Language"
new "Выберите язык"
old "NOTICE: Please keep in mind this is a fan translation, and as such it may not be completely accurate to the original intent of any written lines."
new "ПРИМЕЧАНИЕ: Пожалуйста, имейте в виду, что это фанатский перевод, и он может не полностью соответствовать оригинальному замыслу написанного текста."
old "Gallery"
new "Галерея"
old "Updates"
new "Обновления"
old "About"
new "Об игре"
old "Help"
new "Помощь"
old "What will you write?"
new "Что ты напишешь?"
old "Fang's Dad"
new "Отец Фэнг"
old 'Driver'
new "Водитель"
old "Fang's Mom"
new "Мама Фэнг"
old "Lucy's Mom"
new "Мама Люси"
old "Lucy's Dad"
new "Отец Люси"
old 'Waitress'
new "Официантка"
old "Anon and Fang"
new "Анон и Фэнг"
old "Street Vendor"
new "Торговка"
old "Fang Reed & Trish"
new "Фэнг, Рид и Триш"
old "Fang and Trish"
new "Фэнг и Триш"
old "Naser and Naomi"
new "Незер и Наоми"
old "Naser"
new "Незер"
old "Vince"
new "Винс"
old "Riley"
new "Райли"
old "Trevor"
new "Тревор"
old "Tana"
new "Тана"
old "Chet"
new "Чет"
old "Trish"
new "Триш"
old "Naomi"
new "Наоми"
old "Spears"
new "Спирс"
old "Anon"
new "Анон"
old "Fang"
new "Фэнг"
old "Lucy"
new "Люси"
old "Rosa"
new "Роза"
old "Stella"
new "Стелла"
old "Maitre D"
new "Менеджер"
old "Dr. Fernsworth"
new "Д-р Фернсворт"
old "Mr. Carldewskii"
new "М-р Карлдевски"
old "Mr. Jingo"
new "М-р Джинго"
old "Reed"
new "Рид"
old "Team member"
new "Член команды"
old "Everyone"
new "Все"
old "Moe"
new "Мо"
old "Attendant"
new "Персонал"
old "You have unlocked all bonus chapters!"
new "Вы открыли все бонусные главы!"
old "You have unlocked new bonus chapters, complete unseen endings to see more!"
new "Вы открыли новые бонусные главы! Завершите игру с другими концовками, чтобы увидеть ещё больше!"
old "Start"
new "Начать"
old "Bonus Chapters"
new "Доп. главы"
old "Language"
new "Язык"
old "Quit"
new "Выход"
# game/screens.rpy:379
old "Mods"
new "Моды"
# game/screens.rpy:380
old "Extras"
new "Экстра"
# game/screens.rpy:381
old "History"
new "История"
# game/screens.rpy:382
old "Save"
new "Сохранить"
# game/screens.rpy:383
old "Load"
new "Загрузить"
# game/screens.rpy:384
old "Delete"
new "Удалить"
# game/screens.rpy:385
old "Options"
new "Опции"
# game/screens.rpy:387
old "Return"
new "Назад"
# game/screens.rpy:391
old "End Replay"
new "Конец повтора"
# game/screens.rpy:395
old "Main Menu"
new "Главное меню"
# game/screens.rpy:747
old "Version [config.version!t]\n"
new "Версия: [config.version!t]\n"
# game/screens.rpy:754
old "{size=30}Made with {a=https://www.renpy.org/}Ren'Py{/a} [renpy.version_only].\n\n[renpy.license!t]\nTo find more information about the game (and its source code) please visit {a=https://www.snootgame.xyz/}our website{/a}.{/size}"
new "{size=30}Создано при помощи {a=https://www.renpy.org/}Ren'Py{/a} [renpy.version_only].\n\n[renpy.license!t]\nДля большей информации об игре (и её коде) посетите, пожалуйста, {a=https://www.snootgame.xyz/}наш сайт{/a}.{/size}"
# game/screens.rpy:783
old "Version [config.version!t]"
new "Версия: [config.version!t]"
# game/screens.rpy:785
old "{color=#00FF00}{size=32}Update directory exists, updating is possible!\n{/size}{/color}"
new "{color=#00FF00}{size=32}Файл обновления присутствует, обновление возможно!\n{/size}{/color}"
# game/screens.rpy:787
old "{color=#FF0000}{size=32}Update directory does not exist or is corrupt!\n{/size}{/color}"
new "{color=#FF0000}{size=32}Файл обновления отсутствует или повреждён!\n{/size}{/color}"
# game/screens.rpy:789
old "Auto Update:"
new "Автоматическое обновление:"
# game/screens.rpy:790
old "{color=#FFFFFF}{size=32}Automatic Updates: [persistent.autoup!t]{/size}{/color}"
new "{color=#FFFFFF}{size=32}Автоматические обновления: [persistent.autoup!t]{/size}{/color}"
# game/screens.rpy:791
old "{size=36}Toggle Automatic Updates\n{/size}"
new "{size=36}Включить автоматические обновления\n{/size}"
# game/screens.rpy:793
old "Update Checker:"
new "Проверка обновлений:"
# game/screens.rpy:794
old "{color=#FFFFFF}{size=32}[persistent.updateresult!t]{/size}{/color}"
new "{color=#FFFFFF}{size=32}[persistent.updateresult!t]{/size}{/color}"
# game/screens.rpy:795
old "{size=36}Check for Update\n{/size}"
new "{size=36}Проверить обновления\n{/size}"
# game/screens.rpy:797
old "Updater:"
new "Обновить:"
# game/screens.rpy:798
old "{color=#FFFFFF}{size=32}Server URL (click to edit):{/size}{/color}"
new "{color=#FFFFFF}{size=32}URL сервера (нажмите для редактирования):{/size}{/color}"
# game/screens.rpy:813
old "{size=36}Update Now!\n{/size}"
new "{size=36}Обновить сейчас!\n{/size}"
# game/screens.rpy:849
old "Page {}"
new "Страница {}"
# game/screens.rpy:849
old "Automatic saves"
new "Автоматические сохранения"
# game/screens.rpy:849
old "Quick saves"
new "Быстрые сохранения"
# game/screens.rpy:894
old "{#file_time}%A, %B %d %Y, %H:%M"
new "{#file_time}%A, %d %B %Y, %H:%M"
# game/screens.rpy:894
old "Empty Slot"
new "Пустой слот"
# game/screens.rpy:911
old "<"
new "<"
# game/screens.rpy:914
old "{#auto_page}A"
new "{#auto_page}А"
# game/screens.rpy:917
old "{#quick_page}Q"
new "{#quick_page}Б"
# game/screens.rpy:923
old ">"
new ">"
# game/screens.rpy:980
old "Display"
new "Экран"
# game/screens.rpy:981
old "Window"
new "Оконный режим"
# game/screens.rpy:982
old "Fullscreen"
new "На полный экран"
# game/screens.rpy:986
old "Rollback Side"
new "Отмена действия"
# game/screens.rpy:988
old "Left"
new "Влево"
# game/screens.rpy:989
old "Right"
new "Вправо"
# game/screens.rpy:992
old "Naughty Stuff"
new "Непристойности"
# game/screens.rpy:993
old "Enable Lewd Images"
new "Включить эротику"
# game/screens.rpy:997
old "Requires Restart"
new "Требуется рестарт"
# game/screens.rpy:998
old "Enable Forward-Scroll Movement"
new "Включить пролистывание"
# game/screens.rpy:1001
old "Auto"
new "Авто"
# game/screens.rpy:1002
old "Skip"
new "Пропуск"
# game/screens.rpy:1003
old "Unseen Text"
new "Непрочтённый текст"
# game/screens.rpy:1004
old "After Choices"
new "После выборов"
# game/screens.rpy:1005
old "Transitions"
new "Переходы"
# game/screens.rpy:1018
old "Text Speed"
new "Скорость текста"
# game/screens.rpy:1022
old "Auto-Forward Time"
new "Время до авто-пролистывания"
# game/screens.rpy:1029
old "Music Volume"
new "Громкость музыки"
# game/screens.rpy:1037
old "Sound Volume"
new "Громкость звука"
# game/screens.rpy:1043
old "Test"
new "Тест"
# game/screens.rpy:1045
old "UI Sounds Volume"
new "Громкость интерфейса"
# game/screens.rpy:1053
old "Voice Volume"
new "Громкость голосов"
# game/screens.rpy:1064
old "Mute All"
new "Заглушить всё"
# game/screens.rpy:1183
old "The dialogue history is empty."
new "История диалогов пуста."
# game/screens.rpy:1304
old "Keyboard"
new "Клавиатура"
# game/screens.rpy:1305
old "Mouse"
new "Мышь"
# game/screens.rpy:1307
old "Gamepad"
new "Геймпад"
# game/screens.rpy:1327
old "Enter"
new "Enter"
# game/screens.rpy:1328
old "Advances dialogue and activates the interface."
new "Переход к следующей реплике и активация интерфейса."
# game/screens.rpy:1331
old "Space"
new "Space"
# game/screens.rpy:1332
old "Advances dialogue without selecting choices."
new "Переход к следующей реплике."
# game/screens.rpy:1335
old "Arrow Keys"
new "Стрелки"
# game/screens.rpy:1336
old "Navigate the interface."
new "Навигация по интерфейсу."
# game/screens.rpy:1339
old "Escape"
new "Escape"
# game/screens.rpy:1340
old "Accesses the game menu. Also escapes the Gallery."
new "Доступ к меню игры. Выход из галереи."
# game/screens.rpy:1343
old "Ctrl"
new "Ctrl"
# game/screens.rpy:1344
old "Skips dialogue while held down."
new "Пропускать диалоги, пока зажата кнопка."
# game/screens.rpy:1347
old "Tab"
new "Tab"
# game/screens.rpy:1348
old "Toggles dialogue skipping."
new "Включить пропуск диалогов."
# game/screens.rpy:1351
old "Page Up"
new "Page Up"
# game/screens.rpy:1352
old "Rolls back to earlier dialogue."
new "Вернуться к предыдущей реплике."
# game/screens.rpy:1355
old "Page Down"
new "Page Down"
# game/screens.rpy:1356
old "Rolls forward to later dialogue."
new "Перейти к следующей реплике."
# game/screens.rpy:1360
old "Hides the user interface."
new "Скрыть интерфейс."
# game/screens.rpy:1364
old "Takes a screenshot."
new "Сделать скриншот."
# game/screens.rpy:1368
old "Toggles assistive {a=https://www.renpy.org/l/voicing}self-voicing{/a}."
new "Включить вспомогательную {a=https://www.renpy.org/l/voicing}озвучку{/a}."
# game/screens.rpy:1374
old "Left Click"
new "М1"
# game/screens.rpy:1378
old "Middle Click"
new "М3"
# game/screens.rpy:1382
old "Right Click"
new "М2"
# game/screens.rpy:1386
old "Mouse Wheel Up\nClick Rollback Side"
new "Колёсико вверх"
# game/screens.rpy:1390
old "Mouse Wheel Down"
new "Колёсико вниз"
# game/screens.rpy:1397
old "Right Trigger\nA/Bottom Button"
new "Правый триггер"
# game/screens.rpy:1401
old "Left Trigger\nLeft Shoulder"
new "Левый триггер"
# game/screens.rpy:1405
old "Right Shoulder"
new "Правый бампер"
# game/screens.rpy:1410
old "D-Pad, Sticks"
new "Стики"
# game/screens.rpy:1414
old "Start, Guide"
new "Начало, руководство"
# game/screens.rpy:1415
old "Accesses the game menu."
new "Доступ к меню игры."
# game/screens.rpy:1418
old "Y/Top Button"
new "Y"
# game/screens.rpy:1421
old "Calibrate"
new "Калибровка"
# game/screens.rpy:1484
old "Yes"
new "Да"
# game/screens.rpy:1485
old "No"
new "Нет"
# game/screens.rpy:1531
old "Skipping"
new "Пропускаем"

File diff suppressed because it is too large Load Diff

View File

@ -1,931 +0,0 @@
# TODO: Translation updated at 2021-11-27 11:56
# game/script/10.an-excellent-reason-to-start-abusing-mod-powers.rpy:8
translate ru chapter_10_a79e8242:
# A "Hang on, lemme get my key{cps=*.1}...{/cps}"
A "Подожди, дай ключ достану{cps=*.1}...{/cps}"
# game/script/10.an-excellent-reason-to-start-abusing-mod-powers.rpy:10
translate ru chapter_10_842c4ca9:
# "I awkwardly fish around for it in my pocket, hand weighed down by some cheap first aid stuff from the nearby liquor store."
"Я небрежно роюсь в кармане рукой, перевязанной с использованием дешёвого набора первой помощи из ближайшего алкомаркета."
# game/script/10.an-excellent-reason-to-start-abusing-mod-powers.rpy:13
translate ru chapter_10_d8901b47:
# A "{cps=*.4}This stuff wasnt nece-{/cps}{w=.4}{nw}"
A "{cps=*.4}Это было не обя-{/cps}{w=.4}{nw}"
# game/script/10.an-excellent-reason-to-start-abusing-mod-powers.rpy:15
translate ru chapter_10_5e1375a0:
# F "Shut up."
F "Заткнись."
# game/script/10.an-excellent-reason-to-start-abusing-mod-powers.rpy:17
translate ru chapter_10_9064cbc7:
# F "Open the door."
F "Открывай дверь. "
# game/script/10.an-excellent-reason-to-start-abusing-mod-powers.rpy:20
translate ru chapter_10_f6e85d6b:
# "I finally managed to find my key wedged between my leg and wallet."
"Наконец, мне удалось найти свой ключ, зажатый между ногой и кошельком."
# game/script/10.an-excellent-reason-to-start-abusing-mod-powers.rpy:22
translate ru chapter_10_ae147666:
# "Fang takes the key from me and opens the door before I can think to throw it out the broken window nearby."
"Фэнг отбирает ключ и открывает дверь прежде, чем ко мне приходит мысль выбросить его в ближайшее разбитое окно."
# game/script/10.an-excellent-reason-to-start-abusing-mod-powers.rpy:25
translate ru chapter_10_f9b497a5:
# "Welp. No turning back now."
" Что ж. Пути назад уже нет."
# game/script/10.an-excellent-reason-to-start-abusing-mod-powers.rpy:27
translate ru chapter_10_b08d0124:
# A "Welcome to Casa Del Shithole, occupancy a miserable weeb."
A "Добро пожаловать в Каса-Дель-Гадюшник, жилище жалкого задрота."
# game/script/10.an-excellent-reason-to-start-abusing-mod-powers.rpy:37
translate ru chapter_10_03c03db3:
# "Raptor Jesus threw me a bone at least."
"Раптор Всемогущий, пойди мне навстречу хотя бы в этот раз."
# game/script/10.an-excellent-reason-to-start-abusing-mod-powers.rpy:39
translate ru chapter_10_4ba4443d:
# "Theres no dirty dishes stacked in the sink."
"В раковине нет грязной посуды."
# game/script/10.an-excellent-reason-to-start-abusing-mod-powers.rpy:41
translate ru chapter_10_10e7a2ad:
# "The trash is mostly empty save for a discarded box of cereal."
"Мусорное ведро почти пустое, за исключением торчащей из него коробки хлопьев."
# game/script/10.an-excellent-reason-to-start-abusing-mod-powers.rpy:43
translate ru chapter_10_77ba344c:
# "And my monitor is NOT displaying something Saturnia related."
"И монитор не показывает НИЧЕГО, связанного с Сатурнией."
# game/script/10.an-excellent-reason-to-start-abusing-mod-powers.rpy:46
translate ru chapter_10_ea26e59f:
# "The entrance isnt big enough for both Fang and I, so I leave her supporting shoulder and limp my way to the twin-sized mattress on the floor."
"Дверной проём недостаточно велик для нас с Фэнг, поэтому я оставляю её плечо и ковыляю к матрасу, лежащему на полу."
# game/script/10.an-excellent-reason-to-start-abusing-mod-powers.rpy:58
translate ru chapter_10_6de77e3d:
# "Its so tempting to just drop face-first like usual, but I dont think Id survive the shock of the fall."
"Хочется просто плюхнуться на него, как обычно, но я не думаю, что переживу такое падение."
# game/script/10.an-excellent-reason-to-start-abusing-mod-powers.rpy:70
translate ru chapter_10_74a2d3ca:
# F "{cps=*.1}...{/cps}Nice place{cps=*.1}...?{/cps}"
F "{cps=*.1}...{/cps}Неплохое местечко{cps=*.1}...{/cps}"
# game/script/10.an-excellent-reason-to-start-abusing-mod-powers.rpy:73
translate ru chapter_10_ed69034f:
# A "You dont have to stay. I just wanna curl up in bed and sleep my sorrows away."
A "Тебе не обязательно оставаться. Я просто хочу свернуться калачиком и утопить свою печаль во сне."
# game/script/10.an-excellent-reason-to-start-abusing-mod-powers.rpy:76
translate ru chapter_10_32f872d9:
# F "Anon its ten in the morning."
F "Анон, сейчас десять утра."
# game/script/10.an-excellent-reason-to-start-abusing-mod-powers.rpy:79
translate ru chapter_10_7eb2e797:
# A "And?"
A "И?"
# game/script/10.an-excellent-reason-to-start-abusing-mod-powers.rpy:82
translate ru chapter_10_93957748:
# F "And youre fucking hurt. At least let me try and patch you up."
F "И ты весь в грёбаных синяках. Позволь мне хотя бы попытаться тебя подлатать."
# game/script/10.an-excellent-reason-to-start-abusing-mod-powers.rpy:84
translate ru chapter_10_cc65cf93:
# A "You do-"
A " Ты не-"
# game/script/10.an-excellent-reason-to-start-abusing-mod-powers.rpy:89
translate ru chapter_10_fdd4769a:
# "Fangs glare makes my mouth click shut."
"Свирепый взгляд Фэнг заставляет мой рот захлопнуться."
# game/script/10.an-excellent-reason-to-start-abusing-mod-powers.rpy:93
translate ru chapter_10_3a8e3792:
# "Fang sets the bag of ice packs, icy hots, and sabre balm on my computer desk when something catches her eye."
"Она кладёт пакеты со льдом, мази и бальзам на мой компьютерный стол, как вдруг что-то привлекает её внимание."
# game/script/10.an-excellent-reason-to-start-abusing-mod-powers.rpy:98
translate ru chapter_10_c92ef587:
# F "Is{cps=*.1}...{/cps} is that the phone roomba you bought a while back? You actually kept that thing?"
F "Это{cps=*.1}...{/cps} тот крошечный робот-пылесос, который ты недавно купил? Ты его реально оставил?"
# game/script/10.an-excellent-reason-to-start-abusing-mod-powers.rpy:100
translate ru chapter_10_4825cab4:
# "Fang is standing over the shoebox Ive been using to hold my pet."
"Фэнг стоит над обувной коробкой, в которой я держу своего ‘питомца’."
# game/script/10.an-excellent-reason-to-start-abusing-mod-powers.rpy:102
translate ru chapter_10_d3c81c70:
# "Ive put in a few wooden blocks for it to bump around."
"Я установил несколько деревянных брусков, чтобы он мог кататься по столу, не падая с него."
# game/script/10.an-excellent-reason-to-start-abusing-mod-powers.rpy:105
translate ru chapter_10_d95db720:
# A "Uhh, yeah. Can you go ahead and feed him for me?"
A "Эм, да. Можешь покормить его за меня?"
# game/script/10.an-excellent-reason-to-start-abusing-mod-powers.rpy:108
translate ru chapter_10_8b83a62a:
# F "{cps=*.1}...{/cps}With this box of cornflakes?"
F "{cps=*.1}...{/cps}Этими кукурузными хлопьями?"
# game/script/10.an-excellent-reason-to-start-abusing-mod-powers.rpy:110
translate ru chapter_10_dd4601da:
# A "Yeah{cps=*.1}...{/cps} two or three will do."
A "Ага{cps=*.1}...{/cps} двух или трёх штучек хватит."
# game/script/10.an-excellent-reason-to-start-abusing-mod-powers.rpy:112
translate ru chapter_10_dec8be9f:
# F "{cps=*.1}...{/cps}And you taped your railgun to the top of it."
F "{cps=*.1}...{/cps}И ты прикрепил к нему свой рельсотрон."
# game/script/10.an-excellent-reason-to-start-abusing-mod-powers.rpy:114
translate ru chapter_10_9aead4e7:
# A "If you look close I gave him angry eyebrows too."
A "Если присмотришься, то увидишь и злые брови."
# game/script/10.an-excellent-reason-to-start-abusing-mod-powers.rpy:117
translate ru chapter_10_3a5d43bf:
# F "Why?"
F "Зачем?"
# game/script/10.an-excellent-reason-to-start-abusing-mod-powers.rpy:120
translate ru chapter_10_94385b44:
# A "Mom never let me have a pet. And hes cute."
A "Мама никогда не разрешала мне заводить питомцев. А он довольно милый."
# game/script/10.an-excellent-reason-to-start-abusing-mod-powers.rpy:125
translate ru chapter_10_f2462593:
# F "He?"
F "Он?"
# game/script/10.an-excellent-reason-to-start-abusing-mod-powers.rpy:127
translate ru chapter_10_5156be09:
# A "Dont make fun of Metal Gear RAYmba or else hell shoot you."
A "Не смейся над Метал Гир РЭЙмбой, иначе он пальнёт в тебя."
# game/script/10.an-excellent-reason-to-start-abusing-mod-powers.rpy:129
translate ru chapter_10_a0e5a09b:
# F "{cps=*.1}...{/cps}"
F "{cps=*.1}...{/cps}"
# game/script/10.an-excellent-reason-to-start-abusing-mod-powers.rpy:131
translate ru chapter_10_456377f4:
# A "Hes armed with tiny angry marine munitions."
A "Он вооружён крошечными пушками Энгримаринов."
# game/script/10.an-excellent-reason-to-start-abusing-mod-powers.rpy:133
translate ru chapter_10_a0e5a09b_1:
# F "{cps=*.1}...{/cps}"
F "{cps=*.1}...{/cps}"
# game/script/10.an-excellent-reason-to-start-abusing-mod-powers.rpy:136
translate ru chapter_10_6d549d5f:
# "Fang crumples up some of the flakes and pours the crumbs into RAYs box."
"Фэнг раздавливает несколько хлопьев и высыпает крошки в коробку РЭЙмбы."
# game/script/10.an-excellent-reason-to-start-abusing-mod-powers.rpy:138
translate ru chapter_10_482fc460:
# "I can hear it happily ingesting breakfast from my bed."
"С кровати слышно, как он радостно поглощает свой завтрак."
# game/script/10.an-excellent-reason-to-start-abusing-mod-powers.rpy:141
translate ru chapter_10_ccbb2e03:
# F "You are such a dweeb, Anon."
F "Ты такой задрот, Анон."
# game/script/10.an-excellent-reason-to-start-abusing-mod-powers.rpy:143
translate ru chapter_10_154df1db:
# "Theres no heat in her words."
"В её словах нет раздражения."
# game/script/10.an-excellent-reason-to-start-abusing-mod-powers.rpy:151
translate ru chapter_10_bbce8020:
# "Fang turns to me, the small tub of disgusting green stuff in hand."
"Фэнг поворачивается ко мне, держа в руке тюбик с отвратительной зелёной мазью."
# game/script/10.an-excellent-reason-to-start-abusing-mod-powers.rpy:153
translate ru chapter_10_4e6204d2:
# F "Alright, let me see where youre hurt Anon."
F "Ладно, Анон, дай мне посмотреть, в каких местах тебя задело."
# game/script/10.an-excellent-reason-to-start-abusing-mod-powers.rpy:156
translate ru chapter_10_f1638dc1:
# "{cps=*.1}...{/cps}"
"{cps=*.1}...{/cps}"
# game/script/10.an-excellent-reason-to-start-abusing-mod-powers.rpy:158
translate ru chapter_10_f6821ea9:
# "{cps=*.4}No way in fuck.{/cps}"
"{cps=*.4}Ну уж нет.{/cps}"
# game/script/10.an-excellent-reason-to-start-abusing-mod-powers.rpy:161
translate ru chapter_10_e02bc756:
# F "Now."
F "Быстро."
# game/script/10.an-excellent-reason-to-start-abusing-mod-powers.rpy:164
translate ru chapter_10_1a34901a:
# "Shit. When did Fang learn the patented Mom Glare."
"Чёрт. Когда Фэнг научилась этому запатентованному маминому взгляду?"
# game/script/10.an-excellent-reason-to-start-abusing-mod-powers.rpy:167
translate ru chapter_10_8a3c4248:
# F "Take off your shirt."
F "Снимай рубашку."
# game/script/10.an-excellent-reason-to-start-abusing-mod-powers.rpy:169
translate ru chapter_10_0953ffde:
# A "{cps=*.4}Wait wha-{/cps}{w=.4}{nw}"
A "{cps=*.4}Погодь, чт-{/cps}{w=.4}{nw}"
# game/script/10.an-excellent-reason-to-start-abusing-mod-powers.rpy:172
translate ru chapter_10_0a847b8e:
# F "Take it off or Ill cut it off with your knife."
F "Снимай, или я срежу её твоим ножом."
# game/script/10.an-excellent-reason-to-start-abusing-mod-powers.rpy:175
translate ru chapter_10_5c733eef:
# A "{cps=*.1}...{/cps}Fine{cps=*.1}...{/cps}"
A "{cps=*.1}...{/cps}Ладно{cps=*.1}...{/cps}"
# game/script/10.an-excellent-reason-to-start-abusing-mod-powers.rpy:185
translate ru chapter_10_e5517e2d:
# "I step into my tiny shower stall and turn on the water."
"Я захожу в свою тесную душевую кабинку и включаю воду."
# game/script/10.an-excellent-reason-to-start-abusing-mod-powers.rpy:187
translate ru chapter_10_23de8aab:
# "The shower head sputters before it starts weakly spraying lukewarm water."
"Лейка слегка брызгает, прежде чем начать подавать струю тёплой жидкости."
# game/script/10.an-excellent-reason-to-start-abusing-mod-powers.rpy:196
translate ru chapter_10_18995d38:
# "The temperature of the water doesnt help the tension in my muscles or the bruises marring my skin."
"Горячая вода не помогает снять напряжение в мышцах или смягчить синяки, обезображивающие моё тело."
# game/script/10.an-excellent-reason-to-start-abusing-mod-powers.rpy:205
translate ru chapter_10_9f271066:
# "I stretch around and see massive blotches of purple and black splattered across my torso."
"Я потягиваюсь и вижу огромные пятна фиолетового и чёрного цвета, что покрывают большую часть моего торса."
# game/script/10.an-excellent-reason-to-start-abusing-mod-powers.rpy:216
translate ru chapter_10_d5b5e330:
# "Each contusion is hot to the touch under my fingers and the pain is intense."
"Каждый ушиб на ощупь горячий и сильно болит при касании."
# game/script/10.an-excellent-reason-to-start-abusing-mod-powers.rpy:224
translate ru chapter_10_ce2b637f:
# "The worst is across my chest where the bollard hit me."
"Хуже всего выглядит место на груди, которым я впечатался в столбик."
# game/script/10.an-excellent-reason-to-start-abusing-mod-powers.rpy:234
translate ru chapter_10_e2c40459:
# "I eventually get finished examining my wicked wounds and step out of the bathroom."
"В конце концов я заканчиваю осматривать свои ужасные раны и выхожу из ванной."
# game/script/10.an-excellent-reason-to-start-abusing-mod-powers.rpy:236
translate ru chapter_10_faa9c902:
# "Fang is on her phone doing Raptor Jesus knows what."
"Фэнг копается в телефоне, и лишь Раптор Всемогущий знает, что она там ищет."
# game/script/10.an-excellent-reason-to-start-abusing-mod-powers.rpy:246
translate ru chapter_10_b3f9abbf:
# "Fang then pats the bed."
"Затем она хлопает по кровати."
# game/script/10.an-excellent-reason-to-start-abusing-mod-powers.rpy:249
translate ru chapter_10_ff8faea9:
# F "Come here."
F "Иди сюда."
# game/script/10.an-excellent-reason-to-start-abusing-mod-powers.rpy:252
translate ru chapter_10_9b4270dd:
# "I walk over and lie down on my stomach."
"Я подхожу к кровати и ложусь на живот."
# game/script/10.an-excellent-reason-to-start-abusing-mod-powers.rpy:265
translate ru chapter_10_cac3da1d:
# F "Jesus that's bad{cps=*.1}...{/cps}"
F "Боже, выглядит хреново{cps=*.1}...{/cps}"
# game/script/10.an-excellent-reason-to-start-abusing-mod-powers.rpy:268
translate ru chapter_10_ee3dd4d0:
# "I then felt a cold cream and soft touch on my back, along with a massive jolt of pain."
"Затем я чувствую холодный крем и мягкое прикосновение к спине, вместе с сильным приступом боли."
# game/script/10.an-excellent-reason-to-start-abusing-mod-powers.rpy:270
translate ru chapter_10_d1dcfe11:
# A "FUCK!"
A "ЗАРАЗА!"
# game/script/10.an-excellent-reason-to-start-abusing-mod-powers.rpy:272
translate ru chapter_10_5c5b62f7:
# F "Shit, sorry! Are you okay?"
F "Чёрт, прости! Ты как?"
# game/script/10.an-excellent-reason-to-start-abusing-mod-powers.rpy:275
translate ru chapter_10_ec046ea5:
# A "Yeah, just didnt expect it to hurt that bad{cps=*.1}...{/cps}"
A "В порядке, просто не ожидал, что будет так больно{cps=*.1}...{/cps}"
# game/script/10.an-excellent-reason-to-start-abusing-mod-powers.rpy:278
translate ru chapter_10_662615a2:
# F "Just try to relax."
F "Попытайся расслабиться."
# game/script/10.an-excellent-reason-to-start-abusing-mod-powers.rpy:280
translate ru chapter_10_0b3075ba:
# "I sigh and try my hardest not to freak out when she touches me."
"Я вздыхаю и изо всех сил стараюсь не сорваться, когда она прикасается ко мне."
# game/script/10.an-excellent-reason-to-start-abusing-mod-powers.rpy:282
translate ru chapter_10_a737de1e:
# "She eventually finds a sweet spot of pressure to apply. It still hurts a little, but it doesnt cause me to wince."
"Наконец ей удаётся поймать нужную силу нажатия. Это всё ещё немного больно, но не настолько, чтобы вздрагивать."
# game/script/10.an-excellent-reason-to-start-abusing-mod-powers.rpy:287
translate ru chapter_10_29a1975f:
# "Her hands are soft."
"У неё мягкие руки."
# game/script/10.an-excellent-reason-to-start-abusing-mod-powers.rpy:289
translate ru chapter_10_4c9e5462:
# "I find myself relaxing under Fangs ministrations."
"Я чувствую, что успокаиваюсь под её опекой."
# game/script/10.an-excellent-reason-to-start-abusing-mod-powers.rpy:292
translate ru chapter_10_61a7c440:
# F "Starting to feel better now?"
F "Ну как, уже лучше?"
# game/script/10.an-excellent-reason-to-start-abusing-mod-powers.rpy:294
translate ru chapter_10_8ce61eb8:
# "I nod."
"Я киваю."
# game/script/10.an-excellent-reason-to-start-abusing-mod-powers.rpy:296
translate ru chapter_10_e0040715:
# "My eyes feel heavy as the ointment begins to warm up, drawing away tension from my aching muscles."
"Мои веки тяжелеют, когда мазь нагревается и начинает снимать напряжение с ноющих мышц."
# game/script/10.an-excellent-reason-to-start-abusing-mod-powers.rpy:298
translate ru chapter_10_fcdf3bf8:
# "I can make out a steady thumping on my bed."
"Я слышу ровный стук по кровати."
# game/script/10.an-excellent-reason-to-start-abusing-mod-powers.rpy:300
translate ru chapter_10_8685912d:
# "My senses fade more until all Im aware of is Fangs fingers tracing circles over my sore back and the sound of thumping."
"Чувства всё сильнее покидают меня, пока лишь касания пальцев Фэнг и звуки стука не остаются в моём сознании."
# game/script/10.an-excellent-reason-to-start-abusing-mod-powers.rpy:303
translate ru chapter_10_e6e25318:
# "I wonder what that is."
"Интересно, что же это за стук?"
# game/script/10.an-excellent-reason-to-start-abusing-mod-powers.rpy:306
translate ru chapter_10_22068f55:
# "Fangs hands slow to a stop and eventually pull away, leaving me disappointed."
"Руки Фэнг медленно останавливаются и отстраняются, оставляя меня разочарованным."
# game/script/10.an-excellent-reason-to-start-abusing-mod-powers.rpy:309
translate ru chapter_10_98e72942:
# "The bed shifts."
"Кровать дёргается."
# game/script/10.an-excellent-reason-to-start-abusing-mod-powers.rpy:312
translate ru chapter_10_8b5dcbe5:
# F "Anon."
F "Анон."
# game/script/10.an-excellent-reason-to-start-abusing-mod-powers.rpy:314
translate ru chapter_10_d68a1ee9:
# "Theres something in her voice, but I cant discern it."
"Есть что-то в её голосе. Но я не могу разобрать, что именно."
# game/script/10.an-excellent-reason-to-start-abusing-mod-powers.rpy:317
translate ru chapter_10_2c23493f:
# A "Hm?"
A "Хм?"
# game/script/10.an-excellent-reason-to-start-abusing-mod-powers.rpy:320
translate ru chapter_10_748ac476:
# F "I need to do the front."
F "Нужно натереть и спереди тоже."
# game/script/10.an-excellent-reason-to-start-abusing-mod-powers.rpy:323
translate ru chapter_10_94004a03:
# "Oh."
"Оу."
# game/script/10.an-excellent-reason-to-start-abusing-mod-powers.rpy:331
translate ru chapter_10_3f152cff:
# "Okay then."
"Что ж, ладно."
# game/script/10.an-excellent-reason-to-start-abusing-mod-powers.rpy:334
translate ru chapter_10_e151a9cd:
# "I roll over onto my back."
"Я переворачиваюсь на спину."
# game/script/10.an-excellent-reason-to-start-abusing-mod-powers.rpy:342
translate ru chapter_10_df01031c:
# "And find myself face to beak with her."
"И оказываюсь с ней лицом к лицу."
# game/script/10.an-excellent-reason-to-start-abusing-mod-powers.rpy:345
translate ru chapter_10_37fefd03:
# "Dangerously close."
"Опасно близко."
# game/script/10.an-excellent-reason-to-start-abusing-mod-powers.rpy:348
translate ru chapter_10_33cecfbb:
# "I can feel her breath on my lips and I blush."
"Я чувствую её дыхание на своих губах и краснею."
# game/script/10.an-excellent-reason-to-start-abusing-mod-powers.rpy:350
translate ru chapter_10_a3302084:
# "It never even occurred to me that I could apply the ointment on myself."
"Мне даже и в голову не пришло, что я мог бы и сам нанести на себя мазь."
# game/script/10.an-excellent-reason-to-start-abusing-mod-powers.rpy:353
translate ru chapter_10_c36232f1:
# "I want to look aside."
"Я хочу отвести взгляд."
# game/script/10.an-excellent-reason-to-start-abusing-mod-powers.rpy:355
translate ru chapter_10_cff8054f:
# "Turn my face away to hide the growing blush."
"Отвернуться в сторону, чтобы скрыть нарастающий румянец."
# game/script/10.an-excellent-reason-to-start-abusing-mod-powers.rpy:358
translate ru chapter_10_083beb34:
# "But I cant."
"Но не могу."
# game/script/10.an-excellent-reason-to-start-abusing-mod-powers.rpy:360
translate ru chapter_10_4ab4a5c6:
# "Im entranced looking into Fangs warm amber eyes."
"Я зачарованно смотрю в её теплые янтарные глаза."
# game/script/10.an-excellent-reason-to-start-abusing-mod-powers.rpy:363
translate ru chapter_10_338ad754:
# "Millions of words flash through my head as I try to find something to say."
"Миллионы слов проносятся в голове, пока я пытаюсь найти, что сказать."
# game/script/10.an-excellent-reason-to-start-abusing-mod-powers.rpy:365
translate ru chapter_10_3757c5be:
# "Fang is looking right back."
"Фэнг смотрит в ответ."
# game/script/10.an-excellent-reason-to-start-abusing-mod-powers.rpy:367
translate ru chapter_10_e12ecde1:
# "Eyes that seemed to glow with what little sunlight filling the room stared into mine."
"Её глаза, поблёскивающие от того небольшого количества солнечного света, наполнявшего комнату, уставились в мои."
# game/script/10.an-excellent-reason-to-start-abusing-mod-powers.rpy:370
translate ru chapter_10_7917e98b:
# "I wonder{cps=*.1}...{/cps}"
"Я думаю{cps=*.1}...{/cps}"
# game/script/10.an-excellent-reason-to-start-abusing-mod-powers.rpy:372
translate ru chapter_10_c74a04ac:
# "I hope{cps=*.1}...{/cps}"
"Я надеюсь{cps=*.1}...{/cps}"
# game/script/10.an-excellent-reason-to-start-abusing-mod-powers.rpy:378
translate ru chapter_10_8f52dce0:
# "Do you like me, Fang?"
"Фэнг, я тебе нравлюсь?"
# game/script/10.an-excellent-reason-to-start-abusing-mod-powers.rpy:381
translate ru chapter_10_17131f5b:
# F "A-Anon{cps=*.1}...{/cps}"
F "А-Анон{cps=*.1}...{/cps} "
# game/script/10.an-excellent-reason-to-start-abusing-mod-powers.rpy:384
translate ru chapter_10_41fe9e4e:
# "Im pulled out of my thoughts by her voice."
"Её голос выдёргивает меня из размышлений."
# game/script/10.an-excellent-reason-to-start-abusing-mod-powers.rpy:387
translate ru chapter_10_753751a3:
# "Fangs blushing heavily too, now."
"Фэнг теперь тоже сильно покраснела."
# game/script/10.an-excellent-reason-to-start-abusing-mod-powers.rpy:389
translate ru chapter_10_85377e2b:
# "And her tail is positively hammering away at my bed."
"А её хвост активно колотит по моей кровати."
# game/script/10.an-excellent-reason-to-start-abusing-mod-powers.rpy:392
translate ru chapter_10_71846403:
# "Wait."
"Стоп."
# game/script/10.an-excellent-reason-to-start-abusing-mod-powers.rpy:395
translate ru chapter_10_f929fa51:
# "{cps=*.3}Oh fuck.{/cps}"
"{cps=*.3}О, чёрт.{/cps}"
# game/script/10.an-excellent-reason-to-start-abusing-mod-powers.rpy:397
translate ru chapter_10_c035d474:
# "Did I?"
"Неужели я?"
# game/script/10.an-excellent-reason-to-start-abusing-mod-powers.rpy:400
translate ru chapter_10_5186e326:
# A "I- um{cps=*.1}...{/cps} w-was that{cps=*.1}...{/cps} did I say-"
A "Я... эм{cps=*.1}...{/cps} это было{cps=*.1}...{/cps} я сказал-"
# game/script/10.an-excellent-reason-to-start-abusing-mod-powers.rpy:403
translate ru chapter_10_798b31c4:
# F "Y-yeah{cps=*.1}...{/cps}"
F "А-ага{cps=*.1}...{/cps} "
# game/script/10.an-excellent-reason-to-start-abusing-mod-powers.rpy:405
translate ru chapter_10_fabe2da1:
# A "{cps=*.3}Fffffffffff-{/cps}"
A "{cps=*.3}Бллллллл-{/cps} "
# game/script/10.an-excellent-reason-to-start-abusing-mod-powers.rpy:411
translate ru chapter_10_5d7edcb2:
# "My head sinks back into my pillow."
"Моя голова снова падает на подушку."
# game/script/10.an-excellent-reason-to-start-abusing-mod-powers.rpy:413
translate ru chapter_10_de50291a:
# A "{cps=*.3}-ffffffffff{/cps}{i}fuck{/i}."
A "{cps=*.3}-лллллллл{/cps}{i}лять{/i}."
# game/script/10.an-excellent-reason-to-start-abusing-mod-powers.rpy:416
translate ru chapter_10_620ea31f:
# "A snort escapes from Fangs beak."
"Изо рта Фэнг вырывается смешок."
# game/script/10.an-excellent-reason-to-start-abusing-mod-powers.rpy:426
translate ru chapter_10_3d19d680:
# F "Youre such a fucking dweeb{cps=*.1}...{/cps}"
F "Какой же ты дурень{cps=*.1}...{/cps}"
# game/script/10.an-excellent-reason-to-start-abusing-mod-powers.rpy:429
translate ru chapter_10_5adb831e:
# "Her fingers brush lightly across the largest bruise on my chest, without ointment."
"Её пальцы слегка касаются моего самого большого синяка на груди, который ещё не был намазан."
# game/script/10.an-excellent-reason-to-start-abusing-mod-powers.rpy:434
translate ru chapter_10_cd5c566c:
# F "You mutter from time to time. I didnt start noticing til our{cps=*.1}...{/cps} d-date{cps=*.1}...{/cps}"
F "Ты бормочешь время от времени. Однако это было не так заметно до нашего{cps=*.1}...{/cps} с-свидания{cps=*.1}...{/cps}"
# game/script/10.an-excellent-reason-to-start-abusing-mod-powers.rpy:437
translate ru chapter_10_07725c11:
# "I groan aloud."
"Я громко стону."
# game/script/10.an-excellent-reason-to-start-abusing-mod-powers.rpy:439
translate ru chapter_10_7bb85a56:
# "So the entire time{cps=*.1}...{/cps}"
"Так всё это время{cps=*.1}...{/cps}"
# game/script/10.an-excellent-reason-to-start-abusing-mod-powers.rpy:441
translate ru chapter_10_0410a56b:
# F "Yeah{cps=*.1}...{/cps} Its uh{cps=*.1}...{/cps} kinda cute{cps=*.1}...{/cps}"
F "Да-а{cps=*.1}...{/cps} это{cps=*.1}...{/cps} вроде как, даже мило{cps=*.1}...{/cps}"
# game/script/10.an-excellent-reason-to-start-abusing-mod-powers.rpy:444
translate ru chapter_10_a57cac18:
# A "Raptor Jesus on his cross of rock. So for months now-"
A "Раптор Всемогущий на каменном кресте. Так все эти месяцы ты-"
# game/script/10.an-excellent-reason-to-start-abusing-mod-powers.rpy:446
translate ru chapter_10_2f6bd375:
# F "Ive known. And{cps=*.1}...{/cps}"
F "Ага. И, ну{cps=*.1}...{/cps} "
# game/script/10.an-excellent-reason-to-start-abusing-mod-powers.rpy:453
translate ru chapter_10_24d7cc1f:
# "Fang leans over me with her hand braced next to my head in support."
"Фэнг наклоняется и прикладывает руку к моей голове."
# game/script/10.an-excellent-reason-to-start-abusing-mod-powers.rpy:456
translate ru chapter_10_7e5b530d:
# F "I{cps=*.1}...{/cps} like you too{cps=*.1}...{/cps}"
F "Ты{cps=*.1}...{/cps} мне тоже нравишься{cps=*.1}...{/cps}"
# game/script/10.an-excellent-reason-to-start-abusing-mod-powers.rpy:459
translate ru chapter_10_f21444b8:
# "Fangs hand moves back to my chest, resting just over my machine-gun beating heart."
"Её рука возвращается к моей груди, останавливаясь прямо на бьющемся, словно пулемёт, сердце."
# game/script/10.an-excellent-reason-to-start-abusing-mod-powers.rpy:462
translate ru chapter_10_69ab1108:
# "Her head slowly descends toward mine."
"А голова медленно опускается к моей."
# game/script/10.an-excellent-reason-to-start-abusing-mod-powers.rpy:464
translate ru chapter_10_64faa66b:
# "And before we can start trying to figure out how Human-Dino tonsil hockey is played."
"И прежде, чем мы пытаемся выяснить, как танцевать человекозаврское языковое танго..."
# game/script/10.an-excellent-reason-to-start-abusing-mod-powers.rpy:466
translate ru chapter_10_f5e13bb1:
# "Fangs weight begins to press down behind her hand."
"Фэнг облокачивается всем телом на свою руку."
# game/script/10.an-excellent-reason-to-start-abusing-mod-powers.rpy:469
translate ru chapter_10_def67fe6:
# "Which is dead center of the most serious bruise on my chest."
"Которая находилась прямо в центре самого серьёзного синяка на моём теле."
# game/script/10.an-excellent-reason-to-start-abusing-mod-powers.rpy:475
translate ru chapter_10_950cff99:
# A "FUCK!" with vpunch
A "БЛЯТЬ!" with vpunch
# game/script/10.an-excellent-reason-to-start-abusing-mod-powers.rpy:477
translate ru chapter_10_18853c65:
# F "Oh shit sorrysorrysorry-"
F "Ох, блин, прости-прости-прости-"
# game/script/10.an-excellent-reason-to-start-abusing-mod-powers.rpy:483
translate ru chapter_10_e10b64de:
# A "{cps=*.15}Haaaah.{/cps}"
A "{cps=*.15}Аааах.{/cps}"
# game/script/10.an-excellent-reason-to-start-abusing-mod-powers.rpy:485
translate ru chapter_10_94f87304:
# "I manage to catch my breath."
"Я перевожу дыхание."
# game/script/10.an-excellent-reason-to-start-abusing-mod-powers.rpy:488
translate ru chapter_10_a37a10ec:
# A "Im okay. Just ow{cps=*.1}...{/cps}"
A "Всё хорошо. Просто... ауч{cps=*.1}...{/cps}"
# game/script/10.an-excellent-reason-to-start-abusing-mod-powers.rpy:491
translate ru chapter_10_a2f2c2fb:
# "My hand wraps around Fangs."
"Я аккуратно обхватываю руку Фэнг."
# game/script/10.an-excellent-reason-to-start-abusing-mod-powers.rpy:493
translate ru chapter_10_3e4c9af6:
# A "M-maybe uh{cps=*.1}...{/cps} something else?"
A "М-может, эм{cps=*.1}...{/cps} попробуем что-то другое?"
# game/script/10.an-excellent-reason-to-start-abusing-mod-powers.rpy:495
translate ru chapter_10_3bca1d52:
# A "That wont stress these."
A "Что не заденет этого."
# game/script/10.an-excellent-reason-to-start-abusing-mod-powers.rpy:497
translate ru chapter_10_64df486c:
# "I nod at the blemishes across my chest."
"Я киваю на покрытую синяками грудь."
# game/script/10.an-excellent-reason-to-start-abusing-mod-powers.rpy:500
translate ru chapter_10_7d6dc22d:
# F "Er{cps=*.1}...{/cps} {cps=*.25}liiiiike{/cps}{cps=*.1}...?{/cps}"
F "Эм{cps=*.1}...{/cps} {cps=*.25}н-например{/cps}{cps=*.1}...?{/cps} "
# game/script/10.an-excellent-reason-to-start-abusing-mod-powers.rpy:503
translate ru chapter_10_97151cd8:
# A "{cps=*.2}Liiike{/cps}{cps=*.1}...{/cps} hug? Maybe? I don-"
A "{cps=*.2}Н-например{/cps}{cps=*.1}...{/cps} объятья? Как тебе? Не зна-"
# game/script/10.an-excellent-reason-to-start-abusing-mod-powers.rpy:509
translate ru chapter_10_1f0629e5:
# "Im cut off by Fang moving closer to me again."
"Я замолкаю, когда Фэнг снова пододвигается ко мне."
# game/script/10.an-excellent-reason-to-start-abusing-mod-powers.rpy:511
translate ru chapter_10_a38744a4:
# "Her arm shifts, moving from my chest to my shoulder."
"Её рука скользит с моей груди на плечо."
# game/script/10.an-excellent-reason-to-start-abusing-mod-powers.rpy:514
translate ru chapter_10_a50862e7:
# "Her wing drapes over both of us, becoming a soft and warm blanket of feathers."
"А крыло накрывает нас обоих, превращаясь в мягкое одеяло из перьев."
# game/script/10.an-excellent-reason-to-start-abusing-mod-powers.rpy:516
translate ru chapter_10_60dc3f8e:
# "And her head lands next to mine, sinking into our now shared pillow until Im eye to eye with her."
"Голова опускается к моей, погружаясь в нашу теперь общую подушку, пока мы не оказываемся лицом к лицу."
# game/script/10.an-excellent-reason-to-start-abusing-mod-powers.rpy:519
translate ru chapter_10_670f7540:
# F "Cuddling it is."
F "Обнимашки так обнимашки."
# game/script/10.an-excellent-reason-to-start-abusing-mod-powers.rpy:521
translate ru chapter_10_2e01bcfc:
# "I smile and nod."
"Я улыбаюсь и киваю в ответ."
# game/script/10.an-excellent-reason-to-start-abusing-mod-powers.rpy:524
translate ru chapter_10_ffca6583:
# "Even if Fang is now laying atop my arm and Im starting to lose feeling in it."
"Даже если Фэнг сейчас и лежит на моей руке, отчего она постепенно немеет."
# game/script/10.an-excellent-reason-to-start-abusing-mod-powers.rpy:526
translate ru chapter_10_e427f6d4:
# "The feel of her warm body pressed against my side is definitely worth it."
"Ощущение её тёплого тела, прижатого к моему боку, определённо того стоит."
# game/script/10.an-excellent-reason-to-start-abusing-mod-powers.rpy:529
translate ru chapter_10_db99cbf9:
# "And between that warmth and the plush wing-blanket, my eyes grow heavy again."
"Находясь между этим теплом и плюшевым крылатым одеялом, я чувствую, как мои веки снова тяжелеют."
# game/script/10.an-excellent-reason-to-start-abusing-mod-powers.rpy:532
translate ru chapter_10_f944aa09:
# "Fangs already started to snore, right into my ear."
"Фэнг уже начала сопеть, прямо мне в ухо."
# game/script/10.an-excellent-reason-to-start-abusing-mod-powers.rpy:535
translate ru chapter_10_029ec7f7:
# "Fuck it. I close my eyes and decide that sleeping with Fang is easily the best thing to happen to me."
"К чёрту. Я закрываю глаза и решаю, что уснуть вместе с Фэнг это лучшее, что могло со мной произойти."
# game/script/10.an-excellent-reason-to-start-abusing-mod-powers.rpy:538
translate ru chapter_10_5a015d00:
# "Ah, there{cps=*.1}...{/cps} we{cps=*.1}...{/cps} go{size=-5}o{/size}{size=-10}o{/size}{cps=*.1}{size=-10}...{/size}{/cps}"
"Ну вот{cps=*.1}...{/cps} и{cps=*.1}...{/cps} всё{size=-5}ё{/size}{size=-10}ё{/size}{cps=*.1}{size=-10}...{/size}{/cps}"
# game/script/10.an-excellent-reason-to-start-abusing-mod-powers.rpy:546
translate ru chapter_10_75e32a77:
# "Z{size=-5}z{/size}{size=-10}z{/size}"
"Х{size=-5}р{/size}{size=-10}р.{/size}"
# game/script/10.an-excellent-reason-to-start-abusing-mod-powers.rpy:548
translate ru chapter_10_f1638dc1_1:
# "{cps=*.1}...{/cps}"
"{cps=*.1}...{/cps}"

File diff suppressed because it is too large Load Diff

View File

@ -1,301 +0,0 @@
# TODO: Translation updated at 2021-11-27 11:56
# game/script/11A.fang-desperately-wants-to-win-prom-night.rpy:5
translate ru chapter_11A_57608767:
# "I help Fang through the first few questions until she says she has a good grasp on the concept."
"Я помогаю Фэнг ответить на первые несколько вопросов, пока она не говорит, что хорошо поняла концепцию."
# game/script/11A.fang-desperately-wants-to-win-prom-night.rpy:7
translate ru chapter_11A_53de02b5:
# "Eventually Im able to focus on my own work again, making steady progress through the remaining problems."
"В конце концов я вновь могу сосредоточиться на собственной работе, постепенно решая оставшиеся задачи."
# game/script/11A.fang-desperately-wants-to-win-prom-night.rpy:10
translate ru chapter_11A_10cb1f54:
# "My mind wanders back to the idea of going to Prom."
"Мои мысли возвращаются к идее похода на выпускной."
# game/script/11A.fang-desperately-wants-to-win-prom-night.rpy:12
translate ru chapter_11A_db931904:
# "I honestly dont feel like going."
"Честно говоря, мне не хочется идти."
# game/script/11A.fang-desperately-wants-to-win-prom-night.rpy:14
translate ru chapter_11A_f4be3bf3:
# "Maybe Fang will feel the same about skipping prom and just going to the beach or something."
"Может, Фэнг чувствует то же самое, и вместо выпускного захочет пойти на пляж или типа того?"
# game/script/11A.fang-desperately-wants-to-win-prom-night.rpy:17
translate ru chapter_11A_0665a8e3:
# A "Hey Fang. Do-"
A "Эй, Фэнг. Ты-"
# game/script/11A.fang-desperately-wants-to-win-prom-night.rpy:22
translate ru chapter_11A_5148fa4b:
# "Somethings off with Fang, shes gazing vacantly into space."
"С Фэнг что-то не так, она рассеянно смотрит в пустоту."
# game/script/11A.fang-desperately-wants-to-win-prom-night.rpy:24
translate ru chapter_11A_5e8c8515:
# "Her worksheet lies untouched in front of her."
"Её лист с задачами лежит нетронутым."
# game/script/11A.fang-desperately-wants-to-win-prom-night.rpy:26
translate ru chapter_11A_7171edcd:
# A "{cps=*.1}...{/cps}Fang?"
A "{cps=*.1}...{/cps}Фэнг?"
# game/script/11A.fang-desperately-wants-to-win-prom-night.rpy:29
translate ru chapter_11A_784b7a01:
# F "{cps=*.1}...{/cps}Ive decided."
F "{cps=*.1}...{/cps}Решено."
# game/script/11A.fang-desperately-wants-to-win-prom-night.rpy:31
translate ru chapter_11A_829169f7:
# A "Huh?"
A "Хм?"
# game/script/11A.fang-desperately-wants-to-win-prom-night.rpy:34
translate ru chapter_11A_ee17c2e8:
# F "VVURM DRAMA has to play for the school at prom."
F "VVURM DRAMA должна сыграть на выпускном."
# game/script/11A.fang-desperately-wants-to-win-prom-night.rpy:36
translate ru chapter_11A_b7041cc7:
# F "Its the only way that everyone will finally see our talent."
F "Только так все наконец увидят наш талант."
# game/script/11A.fang-desperately-wants-to-win-prom-night.rpy:39
translate ru chapter_11A_af05d71e:
# A "Wait, your band? But I thought you broke off last mon-"
A "Погодь, твоя группа? Но я думал, что вы разошлись в прошлом мес-"
# game/script/11A.fang-desperately-wants-to-win-prom-night.rpy:44
translate ru chapter_11A_89bbfc3d:
# F "Oh, dont worry about that."
F "О, не переживай на этот счёт."
# game/script/11A.fang-desperately-wants-to-win-prom-night.rpy:46
translate ru chapter_11A_140df526:
# F "Trish called with the idea last night and I apologized!"
F "Прошлой ночью Триш позвонила мне с этой идеей и мне пришлось извиниться!"
# game/script/11A.fang-desperately-wants-to-win-prom-night.rpy:51
translate ru chapter_11A_2a3fa510:
# A "I-wait, {i}you{/i} apologized?"
A "Я-стоп, {i}тебе{/i} пришлось извиняться?"
# game/script/11A.fang-desperately-wants-to-win-prom-night.rpy:54
translate ru chapter_11A_d49dab18:
# F "Thinking about it again, leaving the band was something of an overreaction on my part."
F "Если так поразмыслить, то уход из группы был необдуманным решением с моей стороны. Моя реакция была слишком резкой."
# game/script/11A.fang-desperately-wants-to-win-prom-night.rpy:56
translate ru chapter_11A_0cf62217:
# A "Overreaction? But she-"
A "Резкой? Но она-"
# game/script/11A.fang-desperately-wants-to-win-prom-night.rpy:58
translate ru chapter_11A_68b23159:
# F "Trish has been my friend for a long time, and I shouldnt have been so harsh on her."
F "Триш была моей подругой в течение многих лет, и мне не следовало поступать с ней подобным образом."
# game/script/11A.fang-desperately-wants-to-win-prom-night.rpy:60
translate ru chapter_11A_f42f0ced:
# A "Uh{cps=*.1}...{/cps}{w=.2} ye-{w=.4}{nw}"
A "Эм{cps=*.1}...{/cps}{w=.2} аг-{w=.4}{nw}"
# game/script/11A.fang-desperately-wants-to-win-prom-night.rpy:63
translate ru chapter_11A_cb936082:
# F "So the bands back together!"
F "Так что группа снова вместе!"
# game/script/11A.fang-desperately-wants-to-win-prom-night.rpy:65
translate ru chapter_11A_c6e70309:
# F "Isnt that great!?"
F "Разве это не здорово!?"
# game/script/11A.fang-desperately-wants-to-win-prom-night.rpy:67
translate ru chapter_11A_4cf0cd74:
# A "I-I, uh, sure?"
A "Я-я, эм, конечно?"
# game/script/11A.fang-desperately-wants-to-win-prom-night.rpy:69
translate ru chapter_11A_300b6da2:
# F "So youll go to prom to help us play, right?"
F "Значит, ты пойдёшь на выпускной, чтобы поддержать нас, верно?"
# game/script/11A.fang-desperately-wants-to-win-prom-night.rpy:72
translate ru chapter_11A_bc6d7537:
# "So much for avoiding it. Fuck me."
"Что ж, отмазаться не вышло. Пиздец."
# game/script/11A.fang-desperately-wants-to-win-prom-night.rpy:74
translate ru chapter_11A_a7981a65:
# A "Guess I dont have much of a choice."
A "Полагаю, у меня нет особого выбора."
# game/script/11A.fang-desperately-wants-to-win-prom-night.rpy:76
translate ru chapter_11A_32138f76:
# A "You sure about Trish though?"
A "Но я всё ещё не уверен насчёт Триш..."
# game/script/11A.fang-desperately-wants-to-win-prom-night.rpy:78
translate ru chapter_11A_1db507b4:
# A "{cps=*.6}She proba-{/cps}{w=.4}{nw}"
A "{cps=*.6}Она навер-{/cps}{w=.4}{nw}"
# game/script/11A.fang-desperately-wants-to-win-prom-night.rpy:81
translate ru chapter_11A_8c68f564:
# F "Oh, you can apologize to her at lunch today."
F "О, ты сможешь извиниться перед ней на обеде."
# game/script/11A.fang-desperately-wants-to-win-prom-night.rpy:90
translate ru chapter_11A_13b4e631:
# A "Wh-buh{cps=*.1}...{/cps} What?!"
A "Чт-бл{cps=*.1}...{/cps} Что?!"
# game/script/11A.fang-desperately-wants-to-win-prom-night.rpy:95
translate ru chapter_11A_c619164b:
# A "Why in the seven fucks would I apologize to her?"
A "С какой стати я должен перед ней извиняться?"
# game/script/11A.fang-desperately-wants-to-win-prom-night.rpy:99
translate ru chapter_11A_a821fb1e:
# A "The janitors have stopped washing my locker since it just gets more dicks drawn on it every day!"
A "Уборщики перестали чистить мой шкафчик, поскольку с каждым днём на нём появляется всё больше и больше нарисованных хуёв!"
# game/script/11A.fang-desperately-wants-to-win-prom-night.rpy:102
translate ru chapter_11A_a7a14206:
# A "Theres more dicks on my locker than in a pride parade for fucks sake!"
A "Да на моём шкафчике хуёв больше, чем на гей-параде, чёрт возьми!"
# game/script/11A.fang-desperately-wants-to-win-prom-night.rpy:105
translate ru chapter_11A_ef066920:
# F "Its easier than just letting it boil, right?"
F "Но ведь это проще, чем давать гневу копиться, верно?"
# game/script/11A.fang-desperately-wants-to-win-prom-night.rpy:107
translate ru chapter_11A_d8ee1bbd:
# F "You should be more willing to forgive people."
F "Учись быть более снисходительным."
# game/script/11A.fang-desperately-wants-to-win-prom-night.rpy:110
translate ru chapter_11A_0ac798ae:
# F "Come on, we both have limited friend groups."
F "Брось, Анон, у нас с тобой и так мало друзей."
# game/script/11A.fang-desperately-wants-to-win-prom-night.rpy:112
translate ru chapter_11A_1a98aaf3:
# F "We cant afford to burn bridges when we can just accept things, right?"
F "Мы не должны сжигать мосты, когда можем просто смириться с произошедшим, верно?"
# game/script/11A.fang-desperately-wants-to-win-prom-night.rpy:115
translate ru chapter_11A_f1638dc1:
# "{cps=*.1}...{/cps}"
"{cps=*.1}...{/cps}"
# game/script/11A.fang-desperately-wants-to-win-prom-night.rpy:117
translate ru chapter_11A_2ce83728:
# "When she puts it like that."
"Что ж, когда она подаёт это таким образом."
# game/script/11A.fang-desperately-wants-to-win-prom-night.rpy:120
translate ru chapter_11A_c4c620fe:
# A "I{cps=*.1}...{/cps} Whatever. Fine."
A "Я{cps=*.1}...{/cps} Пофиг. Ладно."
# game/script/11A.fang-desperately-wants-to-win-prom-night.rpy:126
translate ru chapter_11A_539722eb:
# "But how she put it."
"Но то, как она это подаёт."
# game/script/11A.fang-desperately-wants-to-win-prom-night.rpy:128
translate ru chapter_11A_fac801d6:
# "Maybe its just me, but she seems a little{cps=*.1}...{/cps}"
"Может, это лишь моё восприятие, но она выглядит слегка{cps=*.1}...{/cps}"
# game/script/11A.fang-desperately-wants-to-win-prom-night.rpy:130
translate ru chapter_11A_95096231:
# "Frantic."
"Безумно."
# game/script/11A.fang-desperately-wants-to-win-prom-night.rpy:136
translate ru chapter_11A_4292df86:
# F "Ohh, thank you so much Anon!"
F "Отлично! Спасибо тебе огромное, Анон!"
# game/script/11A.fang-desperately-wants-to-win-prom-night.rpy:138
translate ru chapter_11A_86fbf73f:
# F "Ill start looking for a good suit to wear!"
F "Я начну подбирать какой-нибудь классный костюм!"
# game/script/11A.fang-desperately-wants-to-win-prom-night.rpy:141
translate ru chapter_11A_2d88d8fc:
# "Fang yanks her phone out and starts looking through an online catalogue of androgynous formal wear."
"Фэнг вытаскивает свой телефон и начинает просматривать онлайн-каталог андрогинной официальной одежды."
# game/script/11A.fang-desperately-wants-to-win-prom-night.rpy:144
translate ru chapter_11A_a87bb792:
# "Well, this cant be a good sign."
"Что ж, это не может быть хорошим знаком."
# game/script/11A.fang-desperately-wants-to-win-prom-night.rpy:146
translate ru chapter_11A_261c87bf:
# "\"Highlight of our time here at Volcano High\" indeed."
"\"Главное событие нашего пребывания в Вулкейно Хай\"... Мда, лучше и не скажешь."
# game/script/11A.fang-desperately-wants-to-win-prom-night.rpy:156
translate ru chapter_11A_f1638dc1_1:
# "{cps=*.1}...{/cps}"
"{cps=*.1}...{/cps}"

View File

@ -1,325 +0,0 @@
# TODO: Translation updated at 2021-11-27 11:56
# game/script/11B.anon-gets-fangs'-pronouns-right,-and-she's-smug-about-it.rpy:13
translate ru chapter_11B_176dad86:
# "I turn back to see Fang giving me a raised eyebrow and a smug grin."
"Я поворачиваюсь и вижу, как Фэнг смотрит на меня, приподняв бровь и самодовольно ухмыляясь."
# game/script/11B.anon-gets-fangs'-pronouns-right,-and-she's-smug-about-it.rpy:15
translate ru chapter_11B_f8660223:
# F "So{cps=*.1}...{/cps}"
F "Что ж{cps=*.1}...{/cps}"
# game/script/11B.anon-gets-fangs'-pronouns-right,-and-she's-smug-about-it.rpy:18
translate ru chapter_11B_2c23493f:
# A "Hm?"
A "Хм?"
# game/script/11B.anon-gets-fangs'-pronouns-right,-and-she's-smug-about-it.rpy:22
translate ru chapter_11B_7fc66b1e:
# "Fang's eyebrows rise and fall faster and faster."
"Брови Фэнг поднимаются и опускаются всё быстрее и быстрее."
# game/script/11B.anon-gets-fangs'-pronouns-right,-and-she's-smug-about-it.rpy:24
translate ru chapter_11B_e170ad3a:
# "as if she's trying to send a message in morse code."
"Будто она пытается продиктовать мне сообщение азбукой Морзе."
# game/script/11B.anon-gets-fangs'-pronouns-right,-and-she's-smug-about-it.rpy:27
translate ru chapter_11B_6f942cd0:
# "Wait wha-"
"Стоп, чт-"
# game/script/11B.anon-gets-fangs'-pronouns-right,-and-she's-smug-about-it.rpy:29
translate ru chapter_11B_6f373c6d:
# F "Heh. See, you can learn, Anon."
F "Хех. Видишь, ты учишься, Анон."
# game/script/11B.anon-gets-fangs'-pronouns-right,-and-she's-smug-about-it.rpy:32
translate ru chapter_11B_94004a03:
# "Oh."
"Оу."
# game/script/11B.anon-gets-fangs'-pronouns-right,-and-she's-smug-about-it.rpy:34
translate ru chapter_11B_42f3e19f:
# "OH!"
"ОУ!"
# game/script/11B.anon-gets-fangs'-pronouns-right,-and-she's-smug-about-it.rpy:36
translate ru chapter_11B_0a1535a0:
# "Oh god shes still on about that?!"
"Господи, она всё ещё парится из-за этого?!"
# game/script/11B.anon-gets-fangs'-pronouns-right,-and-she's-smug-about-it.rpy:38
translate ru chapter_11B_166a7b30:
# "{cps=*.1}...{/cps}She does seem pretty serious about it."
"{cps=*.1}...{/cps}Похоже, она действительно относится к этому довольно серьёзно."
# game/script/11B.anon-gets-fangs'-pronouns-right,-and-she's-smug-about-it.rpy:40
translate ru chapter_11B_67740e29:
# "Weve been friends long enough{cps=*.1}...{/cps}"
"Мы уже довольно долго дружим{cps=*.1}...{/cps}"
# game/script/11B.anon-gets-fangs'-pronouns-right,-and-she's-smug-about-it.rpy:42
translate ru chapter_11B_228a6bbb:
# "I guess its the least I can do to start going along with it."
"Думаю, лучшее, что я могу сделать это просто смириться."
# game/script/11B.anon-gets-fangs'-pronouns-right,-and-she's-smug-about-it.rpy:45
translate ru chapter_11B_c07d00fd:
# F "I didnt realize you were Pan, Anon."
F "Так сразу и не поймёшь, что ты пан, Анон."
# game/script/11B.anon-gets-fangs'-pronouns-right,-and-she's-smug-about-it.rpy:48
translate ru chapter_11B_8a3002c3:
# A "Pan? Wait, what does a Raptor Williams movie have to do with this?"
A "Пан? Погодь, при чём тут Польша?"
# game/script/11B.anon-gets-fangs'-pronouns-right,-and-she's-smug-about-it.rpy:56
translate ru chapter_11B_4ad8ed04:
# F "No, dummy! Youre Pansexual!"
F "Нет, дурень! Ты пансексуал!"
# game/script/11B.anon-gets-fangs'-pronouns-right,-and-she's-smug-about-it.rpy:60
translate ru chapter_11B_0193beaf:
# A "Im sorry, what?"
A "Прости, что?"
# game/script/11B.anon-gets-fangs'-pronouns-right,-and-she's-smug-about-it.rpy:62
translate ru chapter_11B_7deaa74f:
# F "Youre Pan!"
F "Ты пан!"
# game/script/11B.anon-gets-fangs'-pronouns-right,-and-she's-smug-about-it.rpy:64
translate ru chapter_11B_b4251278:
# F "That means youre willing to date people regardless of identity!"
F "Это значит, что ты готов встречаться с кем-то вне зависимости от их идентичности."
# game/script/11B.anon-gets-fangs'-pronouns-right,-and-she's-smug-about-it.rpy:67
translate ru chapter_11B_e8f2830f:
# "Do I come off as that desperate{cps=*.1}...?{/cps}"
"Неужели я выгляжу настолько отчаявшимся{cps=*.1}...?{/cps}"
# game/script/11B.anon-gets-fangs'-pronouns-right,-and-she's-smug-about-it.rpy:71
translate ru chapter_11B_52f0f46c:
# F "Im an enbie, you recognize me, were dating, therefore you are Pan!"
F "Я небинар, ты признаёшь меня, мы встречаемся, следовательно, ты пан!"
# game/script/11B.anon-gets-fangs'-pronouns-right,-and-she's-smug-about-it.rpy:74
translate ru chapter_11B_bd85abc5:
# "Fang deserves a gold medal at the mental gymnastic olympics."
"Фэнг заслуживает золотую медаль в олимпиаде по ментальной гимнастике."
# game/script/11B.anon-gets-fangs'-pronouns-right,-and-she's-smug-about-it.rpy:76
translate ru chapter_11B_6fad17e8:
# "Even the French would give that routine a ten outta ten."
"Даже французы оценили бы это утверждение на десять из десяти."
# game/script/11B.anon-gets-fangs'-pronouns-right,-and-she's-smug-about-it.rpy:79
translate ru chapter_11B_b61cae09:
# "Aaaaanyways{cps=*.1}...{/cps}"
"В любооом случае{cps=*.1}...{/cps}"
# game/script/11B.anon-gets-fangs'-pronouns-right,-and-she's-smug-about-it.rpy:81
translate ru chapter_11B_e776e22d:
# F "Mumblin again."
F "Ты снова бормочешь."
# game/script/11B.anon-gets-fangs'-pronouns-right,-and-she's-smug-about-it.rpy:83
translate ru chapter_11B_c46ca81e:
# A "{cps=*.1}...{/cps}Prom! You uh{cps=*.1}...{/cps} wanna actually like{cps=*.1}...{/cps} go? Together?"
A "{cps=*.1}...{/cps}Выпускной! Ты, эм{cps=*.1}...{/cps} не хочешь типа{cps=*.1}...{/cps} сходить? Вместе?"
# game/script/11B.anon-gets-fangs'-pronouns-right,-and-she's-smug-about-it.rpy:85
translate ru chapter_11B_c7830db0:
# "Ugh, which is worse, the panny stuff or prom?"
"Угх, что хуже, приколы с пансексуальностью или выпускной?"
# game/script/11B.anon-gets-fangs'-pronouns-right,-and-she's-smug-about-it.rpy:90
translate ru chapter_11B_8cc68d78:
# F "Mmmm{cps=*.1}...{/cps} naaaaah."
F "Мммм{cps=*.1}...{/cps} неееее."
# game/script/11B.anon-gets-fangs'-pronouns-right,-and-she's-smug-about-it.rpy:93
translate ru chapter_11B_af40e7eb:
# F "Prom is like{cps=*.1}...{/cps} so lame, ya know?"
F "Выпускные такие{cps=*.1}...{/cps} отстойные, понимаешь?"
# game/script/11B.anon-gets-fangs'-pronouns-right,-and-she's-smug-about-it.rpy:95
translate ru chapter_11B_0fe198c7:
# A "O-oh. Yeah, I get ya. Not to mention a waste of money."
A "О-оу. Да, я тебя понимаю. Не говоря уже о пустой трате денег."
# game/script/11B.anon-gets-fangs'-pronouns-right,-and-she's-smug-about-it.rpy:98
translate ru chapter_11B_fae3d594:
# F "Yeah. Money better spent on actual good stuff."
F "Ага. Деньги лучше тратить на что-то реально клёвое."
# game/script/11B.anon-gets-fangs'-pronouns-right,-and-she's-smug-about-it.rpy:100
translate ru chapter_11B_598ba099:
# A "Like carfe?"
A "Типа карфе?"
# game/script/11B.anon-gets-fangs'-pronouns-right,-and-she's-smug-about-it.rpy:103
translate ru chapter_11B_dfa41233:
# "In the distance I can hear Reed rebuffing my attempt to try his product."
"Вдалеке я слышу, как Рид отказывает мне в попытке попробовать его продукт."
# game/script/11B.anon-gets-fangs'-pronouns-right,-and-she's-smug-about-it.rpy:105
translate ru chapter_11B_b0ad7595:
# F "Yeah. And booze."
F "Да. И на бухло."
# game/script/11B.anon-gets-fangs'-pronouns-right,-and-she's-smug-about-it.rpy:107
translate ru chapter_11B_eccc25da:
# A "Yeah totally. Like, prom cash is way better spent on fun stuff like liquor."
A "Ага, точняк. Типа, выпускные деньги лучше потратить на что-то весёлое, вроде алкашки."
# game/script/11B.anon-gets-fangs'-pronouns-right,-and-she's-smug-about-it.rpy:111
translate ru chapter_11B_a1c0b6db:
# F "In fact, we totally should."
F "Думаю, так мы и сделаем."
# game/script/11B.anon-gets-fangs'-pronouns-right,-and-she's-smug-about-it.rpy:114
translate ru chapter_11B_04fb369d:
# A "Should what?"
A "Сделаем что?"
# game/script/11B.anon-gets-fangs'-pronouns-right,-and-she's-smug-about-it.rpy:116
translate ru chapter_11B_dbe2f43a:
# F "Have our own prom! Just the two of us! With booze!"
F "Устроим свой собственный выпускной! Только мы вдвоём! С бухлом!"
# game/script/11B.anon-gets-fangs'-pronouns-right,-and-she's-smug-about-it.rpy:118
translate ru chapter_11B_d9a0aa45:
# "I consider the idea for a moment."
"На мгновение я задумываюсь над этой идеей."
# game/script/11B.anon-gets-fangs'-pronouns-right,-and-she's-smug-about-it.rpy:121
translate ru chapter_11B_7629d112:
# "Just Fang, me and a few dozen cans of beer somewhere."
"Только Фэнг, я и несколько дюжин банок пива где-нибудь, подальше от всех."
# game/script/11B.anon-gets-fangs'-pronouns-right,-and-she's-smug-about-it.rpy:127
translate ru chapter_11B_9684b80a:
# A "Fuck yeah!"
A "Да, чёрт возьми!"
# game/script/11B.anon-gets-fangs'-pronouns-right,-and-she's-smug-about-it.rpy:131
translate ru chapter_11B_3087c243:
# F "Fuck yeah!"
F "Да, чёрт возьми!"
# game/script/11B.anon-gets-fangs'-pronouns-right,-and-she's-smug-about-it.rpy:133
translate ru chapter_11B_04c92c78:
# Drf "Quiet down, you in the back."
Drf "Тише вы там, на галёрках."
# game/script/11B.anon-gets-fangs'-pronouns-right,-and-she's-smug-about-it.rpy:136
translate ru chapter_11B_26edff3d:
# A "Oops."
A "Упс."
# game/script/11B.anon-gets-fangs'-pronouns-right,-and-she's-smug-about-it.rpy:140
translate ru chapter_11B_9a8b8235:
# A "Crap, the assignment!"
A "Блин, задание!"
# game/script/11B.anon-gets-fangs'-pronouns-right,-and-she's-smug-about-it.rpy:143
translate ru chapter_11B_66186ac8:
# F "Youre still worried about that?"
F "Ты всё ещё паришься из-за этого?"
# game/script/11B.anon-gets-fangs'-pronouns-right,-and-she's-smug-about-it.rpy:145
translate ru chapter_11B_3362a934:
# "I flip the page over to reveal the second half, which we only have about ten minutes to finish."
"Я переворачиваю страницу, чтобы увидеть вторую половину, на решение которой у нас осталось всего десять минут."
# game/script/11B.anon-gets-fangs'-pronouns-right,-and-she's-smug-about-it.rpy:148
translate ru chapter_11B_f902a1a1:
# F "Its just the one assignment, and theres already no way you can finish, right?"
F "Это всего лишь одно задание, и у тебя явно не хватит времени, чтобы его закончить, верно?"
# game/script/11B.anon-gets-fangs'-pronouns-right,-and-she's-smug-about-it.rpy:151
translate ru chapter_11B_60a0daa5:
# F "Just relax, take a break now and then."
F "Просто расслабься, нужно уметь отдыхать от рутины."
# game/script/11B.anon-gets-fangs'-pronouns-right,-and-she's-smug-about-it.rpy:153
translate ru chapter_11B_1c59fed2:
# "I worriedly glance at the page again."
"Я снова с беспокойством смотрю на страницу."
# game/script/11B.anon-gets-fangs'-pronouns-right,-and-she's-smug-about-it.rpy:156
translate ru chapter_11B_70273cf8:
# "Maybe shes{cps=*.1}...{/cps} theyre right."
"Может быть, она{cps=*.1}...{/cps} они и правы."
# game/script/11B.anon-gets-fangs'-pronouns-right,-and-she's-smug-about-it.rpy:159
translate ru chapter_11B_f627df4f:
# A "Alright, sure."
A "Ладно, конечно."
# game/script/11B.anon-gets-fangs'-pronouns-right,-and-she's-smug-about-it.rpy:169
translate ru chapter_11B_7fb6f928:
# "The two of us continue making plans up to the bell, and I toss the paper out when I leave."
"Мы продолжаем строить планы до звонка, и я выбрасываю страницу с заданием, когда выхожу из класса."
# game/script/11B.anon-gets-fangs'-pronouns-right,-and-she's-smug-about-it.rpy:171
translate ru chapter_11B_f1638dc1:
# "{cps=*.1}...{/cps}"
"{cps=*.1}...{/cps}"

View File

@ -1,571 +0,0 @@
# TODO: Translation updated at 2021-11-27 11:56
# game/script/11C.anon-gets-fangs'-pronouns-right,-but-she-tells-him-she's-okay-with-being-called-a-girl.rpy:5
translate ru chapter_11C_20f7e434:
# "Turning back to Fang, her hands are trying to cover her face."
"Поворачиваясь к Фэнг, я вижу, как она пытается прикрыть лицо руками."
# game/script/11C.anon-gets-fangs'-pronouns-right,-but-she-tells-him-she's-okay-with-being-called-a-girl.rpy:7
translate ru chapter_11C_880287fe:
# "Except the frown thats impossible to hide with her long beak."
"Однако её хмурый взгляд почти невозможно скрыть за этим длинным клювом."
# game/script/11C.anon-gets-fangs'-pronouns-right,-but-she-tells-him-she's-okay-with-being-called-a-girl.rpy:10
translate ru chapter_11C_817ba776:
# A "Fang? You okay?"
A "Фэнг? Ты в порядке?"
# game/script/11C.anon-gets-fangs'-pronouns-right,-but-she-tells-him-she's-okay-with-being-called-a-girl.rpy:19
translate ru chapter_11C_46629eaa:
# "An embarrassed smile forms as she begins to shake her head."
"На её лице появляется смущённая улыбка, и она начинает качать головой."
# game/script/11C.anon-gets-fangs'-pronouns-right,-but-she-tells-him-she's-okay-with-being-called-a-girl.rpy:22
translate ru chapter_11C_9b60d411:
# F "Yeah. I'm good. Just, was reminded of something embarrassing."
F "Да. Я в порядке. Просто вспомнилось кое-что постыдное."
# game/script/11C.anon-gets-fangs'-pronouns-right,-but-she-tells-him-she's-okay-with-being-called-a-girl.rpy:24
translate ru chapter_11C_0b716a4f:
# A "What?"
A "Что?"
# game/script/11C.anon-gets-fangs'-pronouns-right,-but-she-tells-him-she's-okay-with-being-called-a-girl.rpy:28
translate ru chapter_11C_23f3a0d2:
# F "Trish."
F "Триш."
# game/script/11C.anon-gets-fangs'-pronouns-right,-but-she-tells-him-she's-okay-with-being-called-a-girl.rpy:30
translate ru chapter_11C_dc3bdc05:
# A "Trish?"
A "Триш?"
# game/script/11C.anon-gets-fangs'-pronouns-right,-but-she-tells-him-she's-okay-with-being-called-a-girl.rpy:33
translate ru chapter_11C_6ef0e4de:
# F "I can't help it, I see her every day. We tried signing up to as many classes together as we could and now I regret it."
F "Я не могу с этим совладать, я вижу её каждый день. Мы пытались записаться на как можно большее количество совместных уроков, и теперь я об этом жалею."
# game/script/11C.anon-gets-fangs'-pronouns-right,-but-she-tells-him-she's-okay-with-being-called-a-girl.rpy:35
translate ru chapter_11C_0caed630:
# F "And every time I do Im reminded of{cps=*.1}...{/cps} this whole thing."
F "И каждый раз, когда мне напоминают о{cps=*.1}...{/cps} всей этой штуке."
# game/script/11C.anon-gets-fangs'-pronouns-right,-but-she-tells-him-she's-okay-with-being-called-a-girl.rpy:38
translate ru chapter_11C_65627b94:
# A "Im not good at the pronoun game, Fang. What whole thing?"
A "Я не очень хорош в угадывании местоимений, Фэнг. В чём суть?"
# game/script/11C.anon-gets-fangs'-pronouns-right,-but-she-tells-him-she's-okay-with-being-called-a-girl.rpy:40
translate ru chapter_11C_bd1fec63:
# F "THAT, the pronoun thing!"
F "В ЭТОМ! В местоимениях!"
# game/script/11C.anon-gets-fangs'-pronouns-right,-but-she-tells-him-she's-okay-with-being-called-a-girl.rpy:42
translate ru chapter_11C_7b7768dd:
# F "Now things are{cps=*.1}...{/cps} different."
F "Теперь всё{cps=*.1}...{/cps} по-другому."
# game/script/11C.anon-gets-fangs'-pronouns-right,-but-she-tells-him-she's-okay-with-being-called-a-girl.rpy:45
translate ru chapter_11C_1d503824:
# F "And, I wish I hung out with Naser more than{cps=*.1}...{/cps}"
F "И мне хочется проводить больше времени с Незером, чем{cps=*.1}...{/cps}"
# game/script/11C.anon-gets-fangs'-pronouns-right,-but-she-tells-him-she's-okay-with-being-called-a-girl.rpy:48
translate ru chapter_11C_2af3b4fd:
# F "{cps=*.1}...{/cps}her."
F "{cps=*.1}...{/cps}с ней."
# game/script/11C.anon-gets-fangs'-pronouns-right,-but-she-tells-him-she's-okay-with-being-called-a-girl.rpy:51
translate ru chapter_11C_425c3dde:
# "There's some disdain in the way she said it."
"В её словах есть какое-то... презрение."
# game/script/11C.anon-gets-fangs'-pronouns-right,-but-she-tells-him-she's-okay-with-being-called-a-girl.rpy:54
translate ru chapter_11C_725a33b5:
# "Now that they mentioned it, Trish has been very weird lately."
"Теперь, когда она это упомянула, Триш действительно вела себя очень странно в последнее время."
# game/script/11C.anon-gets-fangs'-pronouns-right,-but-she-tells-him-she's-okay-with-being-called-a-girl.rpy:56
translate ru chapter_11C_06d65c06:
# "Should I mention to Fang the fact that every day in Math period I try to check if there's a bomb under my seat?"
"Стоит ли мне рассказать Фэнг о том, что каждый день на уроке математики я проверяю, нет ли под моим стулом бомбы?"
# game/script/11C.anon-gets-fangs'-pronouns-right,-but-she-tells-him-she's-okay-with-being-called-a-girl.rpy:59
translate ru chapter_11C_b4da441f:
# F "You're the one I see the least. It's such a shame."
F "Тебя я вижу реже всех. Это так обидно."
# game/script/11C.anon-gets-fangs'-pronouns-right,-but-she-tells-him-she's-okay-with-being-called-a-girl.rpy:62
translate ru chapter_11C_5eb4a135:
# "Fang starts stroking my hand on the table."
"Фэнг начинает поглаживать мою руку, лежащую на столе."
# game/script/11C.anon-gets-fangs'-pronouns-right,-but-she-tells-him-she's-okay-with-being-called-a-girl.rpy:64
translate ru chapter_11C_938e54d5:
# F "Now though{cps=*.1}...{/cps}"
F "И кстати{cps=*.1}...{/cps}"
# game/script/11C.anon-gets-fangs'-pronouns-right,-but-she-tells-him-she's-okay-with-being-called-a-girl.rpy:66
translate ru chapter_11C_d981942a:
# F "Ive been thinking and{cps=*.1}...{/cps}"
F "Меня тут посещали некоторые мысли{cps=*.1}...{/cps}"
# game/script/11C.anon-gets-fangs'-pronouns-right,-but-she-tells-him-she's-okay-with-being-called-a-girl.rpy:68
translate ru chapter_11C_7fc3d890:
# F "And{cps=*.1}...{/cps} I wouldnt mind{cps=*.1}...{/cps}"
F "И{cps=*.1}...{/cps} я не против{cps=*.1}...{/cps}"
# game/script/11C.anon-gets-fangs'-pronouns-right,-but-she-tells-him-she's-okay-with-being-called-a-girl.rpy:71
translate ru chapter_11C_6215cc86:
# F "Wouldnt mind if you called me Lucy."
F "Не против того, если бы ты называл меня Люси."
# game/script/11C.anon-gets-fangs'-pronouns-right,-but-she-tells-him-she's-okay-with-being-called-a-girl.rpy:74
translate ru chapter_11C_020009c8:
# F "I{cps=*.1}...{/cps} Id like it, in fact."
F "Мне{cps=*.1}...{/cps} Мне бы этого хотелось, если честно."
# game/script/11C.anon-gets-fangs'-pronouns-right,-but-she-tells-him-she's-okay-with-being-called-a-girl.rpy:77
translate ru chapter_11C_ba0321c4:
# A "I{cps=*.1}...{/cps} A-are you sure?"
A "Я{cps=*.1}...{/cps} Т-ты уверена?"
# game/script/11C.anon-gets-fangs'-pronouns-right,-but-she-tells-him-she's-okay-with-being-called-a-girl.rpy:79
translate ru chapter_11C_49c0701b:
# F "Mhm."
F "Угу."
# game/script/11C.anon-gets-fangs'-pronouns-right,-but-she-tells-him-she's-okay-with-being-called-a-girl.rpy:82
translate ru chapter_11C_914f7b2f:
# "Theres a fragility to her voice. A stiffness in her nod."
"В её голосе есть некая слабость. Скованность в кивке."
# game/script/11C.anon-gets-fangs'-pronouns-right,-but-she-tells-him-she's-okay-with-being-called-a-girl.rpy:84
translate ru chapter_11C_66dcaae3:
# "But if Fa-"
"Но если Фэ-"
# game/script/11C.anon-gets-fangs'-pronouns-right,-but-she-tells-him-she's-okay-with-being-called-a-girl.rpy:86
translate ru chapter_11C_a42d41ef:
# "If Lucy would like it then{cps=*.1}...{/cps}"
"Если Люси этого хочет, то{cps=*.1}...{/cps}"
# game/script/11C.anon-gets-fangs'-pronouns-right,-but-she-tells-him-she's-okay-with-being-called-a-girl.rpy:89
translate ru chapter_11C_85e9d6e7:
# A "Alright then{cps=*.1}...{/cps} Lucy."
A "Что ж, без проблем{cps=*.1}...{/cps} Люси."
# game/script/11C.anon-gets-fangs'-pronouns-right,-but-she-tells-him-she's-okay-with-being-called-a-girl.rpy:95
translate ru chapter_11C_3ab429f3:
# "She blushes again and looks away."
"Она снова краснеет и отводит взгляд."
# game/script/11C.anon-gets-fangs'-pronouns-right,-but-she-tells-him-she's-okay-with-being-called-a-girl.rpy:98
translate ru chapter_11C_855bf2b8:
# "I test her name a couple times. Its a nice name. Really sweet. But{cps=*.1}...{/cps}"
"Я пару раз тестирую произношение. Это хорошее имя. Очень милое. Но{cps=*.1}...{/cps}"
# game/script/11C.anon-gets-fangs'-pronouns-right,-but-she-tells-him-she's-okay-with-being-called-a-girl.rpy:100
translate ru chapter_11C_338ba861:
# "Fang fits her more in my mind."
"Фэнг подходит ей больше, на мой взгляд."
# game/script/11C.anon-gets-fangs'-pronouns-right,-but-she-tells-him-she's-okay-with-being-called-a-girl.rpy:103
translate ru chapter_11C_535d648f:
# Lucy "Only you, though."
Lucy "Но только для тебя."
# game/script/11C.anon-gets-fangs'-pronouns-right,-but-she-tells-him-she's-okay-with-being-called-a-girl.rpy:105
translate ru chapter_11C_cb413635:
# Lucy "I dont know if Im comfortable with anyone else saying it yet."
Lucy "С другими я пока не чувствую себя настолько комфортно."
# game/script/11C.anon-gets-fangs'-pronouns-right,-but-she-tells-him-she's-okay-with-being-called-a-girl.rpy:107
translate ru chapter_11C_3bb56026:
# A "I-I see."
A "П-понимаю."
# game/script/11C.anon-gets-fangs'-pronouns-right,-but-she-tells-him-she's-okay-with-being-called-a-girl.rpy:109
translate ru chapter_11C_f2d05182:
# A "Thank you for sharing that with me."
A "Спасибо, что поделилась этим со мной."
# game/script/11C.anon-gets-fangs'-pronouns-right,-but-she-tells-him-she's-okay-with-being-called-a-girl.rpy:112
translate ru chapter_11C_ced06e15:
# "Now both of us are blushing."
"Теперь мы оба покраснели."
# game/script/11C.anon-gets-fangs'-pronouns-right,-but-she-tells-him-she's-okay-with-being-called-a-girl.rpy:114
translate ru chapter_11C_c5355cf8:
# "{cps=*.1}...{/cps}Well, if were already in the moment, I may as well ask."
"{cps=*.1}...{/cps}Что ж, раз уж такой момент, то можно и спросить."
# game/script/11C.anon-gets-fangs'-pronouns-right,-but-she-tells-him-she's-okay-with-being-called-a-girl.rpy:117
translate ru chapter_11C_add91381:
# A "A-anyways, Flucy."
A "В л-любом случае, Флюси."
# game/script/11C.anon-gets-fangs'-pronouns-right,-but-she-tells-him-she's-okay-with-being-called-a-girl.rpy:121
translate ru chapter_11C_748b7933:
# Lucy "Dont stress yourself over it."
Lucy "Не перенапрягайся."
# game/script/11C.anon-gets-fangs'-pronouns-right,-but-she-tells-him-she's-okay-with-being-called-a-girl.rpy:124
translate ru chapter_11C_3f443522:
# A "Right, right."
A "Ладно, ладно."
# game/script/11C.anon-gets-fangs'-pronouns-right,-but-she-tells-him-she's-okay-with-being-called-a-girl.rpy:126
translate ru chapter_11C_9635eca9:
# A "Anyways, uhh."
A "В любом случае, эм."
# game/script/11C.anon-gets-fangs'-pronouns-right,-but-she-tells-him-she's-okay-with-being-called-a-girl.rpy:129
translate ru chapter_11C_ae661822:
# A "Prom, right?"
A "Выпускной, верно?"
# game/script/11C.anon-gets-fangs'-pronouns-right,-but-she-tells-him-she's-okay-with-being-called-a-girl.rpy:137
translate ru chapter_11C_be20e193:
# "Fangs amber eyes zero in on mine."
"Янтарные глаза Фэнг пронзают мои собственные."
# game/script/11C.anon-gets-fangs'-pronouns-right,-but-she-tells-him-she's-okay-with-being-called-a-girl.rpy:140
translate ru chapter_11C_399d7c25:
# "Her pleading gaze bores through to my soul and I feel the unstoppable urge to comfort her in any way possible."
"Её умоляющий взгляд проникает в мою душу, и я чувствую непреодолимое желание утешить её любым доступным способом."
# game/script/11C.anon-gets-fangs'-pronouns-right,-but-she-tells-him-she's-okay-with-being-called-a-girl.rpy:143
translate ru chapter_11C_d638debc:
# A "{cps=*.1}...{/cps}You uhh, wanna go with me?"
A "{cps=*.1}...{/cps}Ты, эм, хочешь пойти со мной?"
# game/script/11C.anon-gets-fangs'-pronouns-right,-but-she-tells-him-she's-okay-with-being-called-a-girl.rpy:152
translate ru chapter_11C_2264bf0b:
# "I watch as Lucys face slowly grows redder and redder."
"Я наблюдаю, как лицо Люси становится всё краснее и краснее."
# game/script/11C.anon-gets-fangs'-pronouns-right,-but-she-tells-him-she's-okay-with-being-called-a-girl.rpy:154
translate ru chapter_11C_95f644ea:
# "Her lips turn from a thin line to an impressively massive grin."
"Её губы превращаются из тонкой линии в впечатляюще огромную ухмылку."
# game/script/11C.anon-gets-fangs'-pronouns-right,-but-she-tells-him-she's-okay-with-being-called-a-girl.rpy:160
translate ru chapter_11C_a83454de:
# "She tries to cover up her face with her hands."
"Она пытается закрыть лицо руками."
# game/script/11C.anon-gets-fangs'-pronouns-right,-but-she-tells-him-she's-okay-with-being-called-a-girl.rpy:166
translate ru chapter_11C_c2245bea:
# "When that fails to hide her growing excitement her wings engulf her upper body."
"Когда эта попытка скрыть своё волнение проваливается, она закрывает верхнюю часть тела крыльями."
# game/script/11C.anon-gets-fangs'-pronouns-right,-but-she-tells-him-she's-okay-with-being-called-a-girl.rpy:168
translate ru chapter_11C_23a99b10:
# "A squeal of elation penetrates the feathered cage, accompanied by the staccato beat of boots stomping rapidly on the ground."
"Из крылатой клетки вырывается восторженный визг, сопровождаемый отрывистым стуком сапог, быстро топающих по полу."
# game/script/11C.anon-gets-fangs'-pronouns-right,-but-she-tells-him-she's-okay-with-being-called-a-girl.rpy:171
translate ru chapter_11C_fe33104d:
# "Once the sounds of jubilation die down Lucy lowers her wings."
"Как только звуки ликования стихают, Люси опускает свои крылья."
# game/script/11C.anon-gets-fangs'-pronouns-right,-but-she-tells-him-she's-okay-with-being-called-a-girl.rpy:181
translate ru chapter_11C_a1a4bd91:
# "She takes a calming breath and shrugs nonchalantly."
"Она делает успокоительный вдох и беспечно пожимает плечами."
# game/script/11C.anon-gets-fangs'-pronouns-right,-but-she-tells-him-she's-okay-with-being-called-a-girl.rpy:185
translate ru chapter_11C_38d6c331:
# Lucy "Sure, could be cool."
Lucy "Конечно, было бы круто."
# game/script/11C.anon-gets-fangs'-pronouns-right,-but-she-tells-him-she's-okay-with-being-called-a-girl.rpy:188
translate ru chapter_11C_ab92e956:
# "The whole class is snickering and I have to fight back my own."
"Весь класс хихикает, и мне самому приходится сдерживать свой собственный смех."
# game/script/11C.anon-gets-fangs'-pronouns-right,-but-she-tells-him-she's-okay-with-being-called-a-girl.rpy:190
translate ru chapter_11C_9edcd1ad:
# "Sadly it was a foe far greater than I."
"К сожалению, мой противник был слишком силён."
# game/script/11C.anon-gets-fangs'-pronouns-right,-but-she-tells-him-she's-okay-with-being-called-a-girl.rpy:193
translate ru chapter_11C_0af72acb:
# A "Pfffftttahahahaha."
A "Пффффхахахаха."
# game/script/11C.anon-gets-fangs'-pronouns-right,-but-she-tells-him-she's-okay-with-being-called-a-girl.rpy:201
translate ru chapter_11C_6b0650af:
# Lucy "Up the shut fuck."
Lucy "А ну заткнись."
# game/script/11C.anon-gets-fangs'-pronouns-right,-but-she-tells-him-she's-okay-with-being-called-a-girl.rpy:203
translate ru chapter_11C_8ea53355:
# Lucy "Youre my date. Im allowed to be happy."
Lucy "Ты моя пара. Мне позволено радоваться."
# game/script/11C.anon-gets-fangs'-pronouns-right,-but-she-tells-him-she's-okay-with-being-called-a-girl.rpy:205
translate ru chapter_11C_6b27edd3:
# "While her voice was petulant there was an underlying tone of cheer in it."
"Хоть её голос и был раздражённым, в нём чувствовалась скрытая радость."
# game/script/11C.anon-gets-fangs'-pronouns-right,-but-she-tells-him-she's-okay-with-being-called-a-girl.rpy:207
translate ru chapter_11C_906ac76b:
# "I reassured Lucy with a smile, which she responded by lowering her wings until they folded neatly behind her."
"Я успокоил Люси улыбкой, на что она опустила крылья, аккуратно сложив их за спиной."
# game/script/11C.anon-gets-fangs'-pronouns-right,-but-she-tells-him-she's-okay-with-being-called-a-girl.rpy:213
translate ru chapter_11C_eacfa957:
# A "Yeah. Though I should warn you that I cant dance for shit. Your feet have been warned."
A "Конечно. Однако я должен предупредить, что я совершенно не умею танцевать. Так что береги ноги."
# game/script/11C.anon-gets-fangs'-pronouns-right,-but-she-tells-him-she's-okay-with-being-called-a-girl.rpy:215
translate ru chapter_11C_bb948095:
# Lucy "Thats fine."
Lucy "Не страшно."
# game/script/11C.anon-gets-fangs'-pronouns-right,-but-she-tells-him-she's-okay-with-being-called-a-girl.rpy:218
translate ru chapter_11C_96722dc5:
# Lucy "Ill just step on your feet first."
Lucy "Я просто наступлю на тебя первее."
# game/script/11C.anon-gets-fangs'-pronouns-right,-but-she-tells-him-she's-okay-with-being-called-a-girl.rpy:221
translate ru chapter_11C_5ca191bf:
# "Crap, I need a suit."
"Чёрт, мне нужен костюм."
# game/script/11C.anon-gets-fangs'-pronouns-right,-but-she-tells-him-she's-okay-with-being-called-a-girl.rpy:223
translate ru chapter_11C_30e64eca:
# Lucy "Youre mumbling again. And uhmm."
Lucy "Ты снова бормочешь. И кхм."
# game/script/11C.anon-gets-fangs'-pronouns-right,-but-she-tells-him-she's-okay-with-being-called-a-girl.rpy:225
translate ru chapter_11C_4e36172c:
# Lucy "I could ask Naser for his old one."
Lucy "Можно попросить Незера одолжить свой старый."
# game/script/11C.anon-gets-fangs'-pronouns-right,-but-she-tells-him-she's-okay-with-being-called-a-girl.rpy:227
translate ru chapter_11C_6d06a8b8:
# A "I was thinking something like that, but Ill probably just ask my dad for his old tux."
A "Я думал об этом, но всё-таки лучше попрошу отца прислать мне свой смокинг."
# game/script/11C.anon-gets-fangs'-pronouns-right,-but-she-tells-him-she's-okay-with-being-called-a-girl.rpy:229
translate ru chapter_11C_3acbf409:
# A "His is tailored for humans, after all."
A "Он сшит на людей, как-никак."
# game/script/11C.anon-gets-fangs'-pronouns-right,-but-she-tells-him-she's-okay-with-being-called-a-girl.rpy:231
translate ru chapter_11C_79d649f5:
# A "Be pretty silly to be walking around all night with the wingholes exposing my undershirt."
A "Было бы довольно глупо разгуливать там всю ночь с вырезами под крылья, обнажающими мою рубашку."
# game/script/11C.anon-gets-fangs'-pronouns-right,-but-she-tells-him-she's-okay-with-being-called-a-girl.rpy:233
translate ru chapter_11C_cb582c37:
# Lucy "Thatd be pretty silly, yeah."
Lucy "Да, это было бы довольно глупо."
# game/script/11C.anon-gets-fangs'-pronouns-right,-but-she-tells-him-she's-okay-with-being-called-a-girl.rpy:235
translate ru chapter_11C_b5696ddc:
# Lucy "And then theres the tail."
Lucy "А ведь есть ещё и хвост."
# game/script/11C.anon-gets-fangs'-pronouns-right,-but-she-tells-him-she's-okay-with-being-called-a-girl.rpy:238
translate ru chapter_11C_9c437ce8:
# A "Oh god no."
A "О боже, нет."
# game/script/11C.anon-gets-fangs'-pronouns-right,-but-she-tells-him-she's-okay-with-being-called-a-girl.rpy:240
translate ru chapter_11C_417fa20f:
# A "But yeah, my dads suit would work nice, even if its a bit old."
A "Но да, отцовский костюм отлично бы подошёл, даже если он и старый."
# game/script/11C.anon-gets-fangs'-pronouns-right,-but-she-tells-him-she's-okay-with-being-called-a-girl.rpy:242
translate ru chapter_11C_9aae9dcb:
# A "He used to tell me about the parties he went to when he was about my age."
A "Помню, он рассказывал мне о вечеринках, на которые ходил, когда был примерно моего возраста."
# game/script/11C.anon-gets-fangs'-pronouns-right,-but-she-tells-him-she's-okay-with-being-called-a-girl.rpy:244
translate ru chapter_11C_1f9300ff:
# Lucy "Sounds like he was a lot of fun."
Lucy "Похоже, он был душой компании."
# game/script/11C.anon-gets-fangs'-pronouns-right,-but-she-tells-him-she's-okay-with-being-called-a-girl.rpy:246
translate ru chapter_11C_428d356b:
# A "Anyways, you got anything to wear?"
A "В любом случае, а что наденешь ты?"
# game/script/11C.anon-gets-fangs'-pronouns-right,-but-she-tells-him-she's-okay-with-being-called-a-girl.rpy:249
translate ru chapter_11C_8f2619d9:
# Lucy "My moms already probably bought the 'perfect outfit' for me."
Lucy "Моя мама уже наверняка купила мне ‘идеальный наряд’."
# game/script/11C.anon-gets-fangs'-pronouns-right,-but-she-tells-him-she's-okay-with-being-called-a-girl.rpy:251
translate ru chapter_11C_3d64bee1:
# A "But the announcement for prom was just earlier this period."
A "Но ведь объявление о выпускном было только в начале урока."
# game/script/11C.anon-gets-fangs'-pronouns-right,-but-she-tells-him-she's-okay-with-being-called-a-girl.rpy:254
translate ru chapter_11C_f1e71f13:
# Lucy "And?"
Lucy "И что?"
# game/script/11C.anon-gets-fangs'-pronouns-right,-but-she-tells-him-she's-okay-with-being-called-a-girl.rpy:256
translate ru chapter_11C_4bdc8fcc:
# A "Sounds like its a date, then."
A "Что ж, звучит как свидание."
# game/script/11C.anon-gets-fangs'-pronouns-right,-but-she-tells-him-she's-okay-with-being-called-a-girl.rpy:261
translate ru chapter_11C_51bb79eb:
# "Fangs smile is cherubic."
"У Фэнг просто ангельская улыбка."
# game/script/11C.anon-gets-fangs'-pronouns-right,-but-she-tells-him-she's-okay-with-being-called-a-girl.rpy:263
translate ru chapter_11C_40d8eec4:
# "And before I can fully memorize it,"
"И прежде чем я успел это полностью запечатлеть,"
# game/script/11C.anon-gets-fangs'-pronouns-right,-but-she-tells-him-she's-okay-with-being-called-a-girl.rpy:267
translate ru chapter_11C_4698e32e:
# "{cps=*20}{i}DING-{w=0.7}DONG {w=0.65}BING-{w=0.7}BONG{/i}{/cps}"
"{cps=*20}{i}ДИНЬ-{w=0.7}ДОН! {w=0.65}ДИНЬ-{w=0.7}ДОН!{/i}{/cps}"
# game/script/11C.anon-gets-fangs'-pronouns-right,-but-she-tells-him-she's-okay-with-being-called-a-girl.rpy:272
translate ru chapter_11C_4b4bcd2a:
# A "Crap, the assignment."
A "Чёрт, задание."
# game/script/11C.anon-gets-fangs'-pronouns-right,-but-she-tells-him-she's-okay-with-being-called-a-girl.rpy:274
translate ru chapter_11C_00332571:
# Lucy "We were mostly done with it anyways."
Lucy "Мы всё равно почти закончили."
# game/script/11C.anon-gets-fangs'-pronouns-right,-but-she-tells-him-she's-okay-with-being-called-a-girl.rpy:277
translate ru chapter_11C_543fb648:
# "I look at our mostly done sheet."
"Я смотрю на почти полностью заполненный лист."
# game/script/11C.anon-gets-fangs'-pronouns-right,-but-she-tells-him-she's-okay-with-being-called-a-girl.rpy:279
translate ru chapter_11C_3556fe2d:
# "Flipping it over, the backside has twice the questions and four times the blank spots."
"Перевернув его, я понимаю, что на обратной стороне в два раза больше вопросов и в четыре раза больше пустых строк."
# game/script/11C.anon-gets-fangs'-pronouns-right,-but-she-tells-him-she's-okay-with-being-called-a-girl.rpy:284
translate ru chapter_11C_15cd3490:
# Lucy "M-mostly half way?"
Lucy "П-почти наполовину закончили?"
# game/script/11C.anon-gets-fangs'-pronouns-right,-but-she-tells-him-she's-okay-with-being-called-a-girl.rpy:287
translate ru chapter_11C_f6e434e7:
# "I simply sigh and drop the sheet."
"Я просто вздыхаю и бросаю листок."
# game/script/11C.anon-gets-fangs'-pronouns-right,-but-she-tells-him-she's-okay-with-being-called-a-girl.rpy:290
translate ru chapter_11C_1b76d604:
# A "Finish it at my place?"
A "Закончим у меня дома?"
# game/script/11C.anon-gets-fangs'-pronouns-right,-but-she-tells-him-she's-okay-with-being-called-a-girl.rpy:293
translate ru chapter_11C_20d0e4d1:
# Lucy "Sounds like a second date."
Lucy "Звучит как второе свидание."
# game/script/11C.anon-gets-fangs'-pronouns-right,-but-she-tells-him-she's-okay-with-being-called-a-girl.rpy:302
translate ru chapter_11C_f1638dc1:
# "{cps=*.1}...{/cps}"
"{cps=*.1}...{/cps}"

View File

@ -1,667 +0,0 @@
# TODO: Translation updated at 2021-11-27 11:56
# game/script/11D.anon-gets-fangs'-pronouns-right-and-she-teases-him-while-carrying-herself-with-more-confidence.rpy:10
translate ru chapter_11D_0d1cd4b9:
# "I turn back to Fang and her mischievous grin."
"Я поворачиваюсь к Фэнг и её ехидной ухмылке."
# game/script/11D.anon-gets-fangs'-pronouns-right-and-she-teases-him-while-carrying-herself-with-more-confidence.rpy:13
translate ru chapter_11D_0b716a4f:
# A "What?"
A "Что?"
# game/script/11D.anon-gets-fangs'-pronouns-right-and-she-teases-him-while-carrying-herself-with-more-confidence.rpy:15
translate ru chapter_11D_9078817c:
# "Her grin only grows."
"Её ухмылка продолжает нарастать."
# game/script/11D.anon-gets-fangs'-pronouns-right-and-she-teases-him-while-carrying-herself-with-more-confidence.rpy:18
translate ru chapter_11D_b9f4fcbd:
# A "What?! Whats with the look?"
A "Что?! Почему ты на меня так смотришь?"
# game/script/11D.anon-gets-fangs'-pronouns-right-and-she-teases-him-while-carrying-herself-with-more-confidence.rpy:20
translate ru chapter_11D_21ca81e7:
# "She shakes her head and covers her mouth."
"Она трясёт головой и прикрывает рот."
# game/script/11D.anon-gets-fangs'-pronouns-right-and-she-teases-him-while-carrying-herself-with-more-confidence.rpy:22
translate ru chapter_11D_cb37ae05:
# A "Uh{cps=*.1}...{/cps} did I say something funny?"
A "Эм{cps=*.1}...{/cps} я сказал что-то смешное?"
# game/script/11D.anon-gets-fangs'-pronouns-right-and-she-teases-him-while-carrying-herself-with-more-confidence.rpy:24
translate ru chapter_11D_88699ff4:
# F "Anon you ignorant slut."
F "Анон, ну ты и невежественная шлюшка."
# game/script/11D.anon-gets-fangs'-pronouns-right-and-she-teases-him-while-carrying-herself-with-more-confidence.rpy:26
translate ru chapter_11D_61b62fe3:
# F "Notice something about me? Anything at all?"
F "Ты что-нибудь во мне заметил? Хоть что-нибудь?"
# game/script/11D.anon-gets-fangs'-pronouns-right-and-she-teases-him-while-carrying-herself-with-more-confidence.rpy:29
translate ru chapter_11D_82f45071:
# A "{cps=*.1}...{/cps}Why do you have feathers on your elbows anyway?"
A "{cps=*.1}...{/cps}Типа, почему у тебя перья на локтях?"
# game/script/11D.anon-gets-fangs'-pronouns-right-and-she-teases-him-while-carrying-herself-with-more-confidence.rpy:31
translate ru chapter_11D_e3da3ed0:
# F "Gawd! No! Im not actually enbie, Anon."
F "Боже! Нет! Я на самом деле не энби, Анон."
# game/script/11D.anon-gets-fangs'-pronouns-right-and-she-teases-him-while-carrying-herself-with-more-confidence.rpy:34
translate ru chapter_11D_b3fa5df7:
# "What? Oh! 'She'."
"Что? Оу! ‘Она’."
# game/script/11D.anon-gets-fangs'-pronouns-right-and-she-teases-him-while-carrying-herself-with-more-confidence.rpy:36
translate ru chapter_11D_3c0a52d0:
# A "Oh{cps=*.1}...{/cps} still, why do you have feathers on your elbows?"
A "Оу{cps=*.1}...{/cps} но серьёзно, почему у тебя перья на локтях?"
# game/script/11D.anon-gets-fangs'-pronouns-right-and-she-teases-him-while-carrying-herself-with-more-confidence.rpy:38
translate ru chapter_11D_b2a2f476:
# "Fang rolls her eyes and digs her feathered elbow into my side."
"Фэнг закатывает глаза и толкает меня в бок своим локтем."
# game/script/11D.anon-gets-fangs'-pronouns-right-and-she-teases-him-while-carrying-herself-with-more-confidence.rpy:47
translate ru chapter_11D_950ecc6a:
# A "Alright alright, I get it."
A "Ладно-ладно, я понял."
# game/script/11D.anon-gets-fangs'-pronouns-right-and-she-teases-him-while-carrying-herself-with-more-confidence.rpy:51
translate ru chapter_11D_b11c504b:
# A "Just joking around."
A "Просто шучу."
# game/script/11D.anon-gets-fangs'-pronouns-right-and-she-teases-him-while-carrying-herself-with-more-confidence.rpy:53
translate ru chapter_11D_c99c0d04:
# F "Shame your jokes suck."
F "Жаль лишь, что твои шутки отстой."
# game/script/11D.anon-gets-fangs'-pronouns-right-and-she-teases-him-while-carrying-herself-with-more-confidence.rpy:55
translate ru chapter_11D_e94649d3:
# "We chuckle together."
"Мы вместе хихикаем."
# game/script/11D.anon-gets-fangs'-pronouns-right-and-she-teases-him-while-carrying-herself-with-more-confidence.rpy:58
translate ru chapter_11D_de335cc9:
# A "So, like, I can say youre my girlfriend now?"
A "Что ж, значит, я теперь могу сказать, что ты моя девушка?"
# game/script/11D.anon-gets-fangs'-pronouns-right-and-she-teases-him-while-carrying-herself-with-more-confidence.rpy:60
translate ru chapter_11D_d5ad08ea:
# "Fang blushes a little."
"Фэнг немного краснеет."
# game/script/11D.anon-gets-fangs'-pronouns-right-and-she-teases-him-while-carrying-herself-with-more-confidence.rpy:62
translate ru chapter_11D_f2c32818:
# F "You always could. Dummy."
F "Ты всегда мог. Дурень."
# game/script/11D.anon-gets-fangs'-pronouns-right-and-she-teases-him-while-carrying-herself-with-more-confidence.rpy:64
translate ru chapter_11D_fa476977:
# "The blush becomes contagious and I find myself looking back at the worksheet."
"Её румянец становится заразительным, и я ловлю себя на том, что снова смотрю на лист с заданием."
# game/script/11D.anon-gets-fangs'-pronouns-right-and-she-teases-him-while-carrying-herself-with-more-confidence.rpy:66
translate ru chapter_11D_e01f37f0:
# "{cps=*.1}...{/cps}Girlfriend{cps=*.1}...{/cps}"
"{cps=*.1}...{/cps}Девушка{cps=*.1}...{/cps}"
# game/script/11D.anon-gets-fangs'-pronouns-right-and-she-teases-him-while-carrying-herself-with-more-confidence.rpy:68
translate ru chapter_11D_ffd1a90d:
# "Suddenly Im feeling squeamish all over again."
"Внезапно я снова чувствую смущение."
# game/script/11D.anon-gets-fangs'-pronouns-right-and-she-teases-him-while-carrying-herself-with-more-confidence.rpy:71
translate ru chapter_11D_08df0c2a:
# "I mean, we went on dates before, but shes never straight up said shes my girlfriend{cps=*.1}...{/cps}"
"Да, мы ранее ходили на свидания, но она никогда напрямую не говорила, что она моя девушка{cps=*.1}...{/cps}"
# game/script/11D.anon-gets-fangs'-pronouns-right-and-she-teases-him-while-carrying-herself-with-more-confidence.rpy:73
translate ru chapter_11D_f031316f:
# "Now Im on the spot."
"А теперь всё кристально чисто."
# game/script/11D.anon-gets-fangs'-pronouns-right-and-she-teases-him-while-carrying-herself-with-more-confidence.rpy:76
translate ru chapter_11D_46d38639:
# "It only makes sense that I ask her to prom, right?"
"Это ведь логично, что я приглашаю её на выпускной, верно?"
# game/script/11D.anon-gets-fangs'-pronouns-right-and-she-teases-him-while-carrying-herself-with-more-confidence.rpy:78
translate ru chapter_11D_4dcc1561:
# "Why am I getting so worked up again all of a sudden?"
"Почему я вдруг снова так загоняюсь?"
# game/script/11D.anon-gets-fangs'-pronouns-right-and-she-teases-him-while-carrying-herself-with-more-confidence.rpy:80
translate ru chapter_11D_222deb26:
# "This is ridiculous, Im just going to ask."
"Это абсурдно, я просто спрошу."
# game/script/11D.anon-gets-fangs'-pronouns-right-and-she-teases-him-while-carrying-herself-with-more-confidence.rpy:82
translate ru chapter_11D_ac5af2a8:
# A "Hey, Fang, you-"
A "Эй, Фэнг, ты-"
# game/script/11D.anon-gets-fangs'-pronouns-right-and-she-teases-him-while-carrying-herself-with-more-confidence.rpy:85
translate ru chapter_11D_90075ab2:
# F "Were going to prom together, right?"
F "Мы ведь пойдём на выпускной вместе, верно?"
# game/script/11D.anon-gets-fangs'-pronouns-right-and-she-teases-him-while-carrying-herself-with-more-confidence.rpy:88
translate ru chapter_11D_c6ab0093:
# A "O-oh, yeah. Totally."
A "О-оу, да. Конечно."
# game/script/11D.anon-gets-fangs'-pronouns-right-and-she-teases-him-while-carrying-herself-with-more-confidence.rpy:90
translate ru chapter_11D_0e27f04d:
# A "I was gonna ask if you wanted to go at all."
A "Я собирался спросить, хочешь ли ты в принципе пойти."
# game/script/11D.anon-gets-fangs'-pronouns-right-and-she-teases-him-while-carrying-herself-with-more-confidence.rpy:92
translate ru chapter_11D_4627b435:
# F "Of course I do, but do you want to go?"
F "Конечно, хочу, а ты... хочешь?"
# game/script/11D.anon-gets-fangs'-pronouns-right-and-she-teases-him-while-carrying-herself-with-more-confidence.rpy:94
translate ru chapter_11D_dd55f268:
# A "I mean, only with you?"
A "Типа, только если с тобой?"
# game/script/11D.anon-gets-fangs'-pronouns-right-and-she-teases-him-while-carrying-herself-with-more-confidence.rpy:96
translate ru chapter_11D_a170a84f:
# F "Yes or no, dork."
F "Да или нет, дурень."
# game/script/11D.anon-gets-fangs'-pronouns-right-and-she-teases-him-while-carrying-herself-with-more-confidence.rpy:99
translate ru chapter_11D_13cabaff:
# A "Yes."
A "Да."
# game/script/11D.anon-gets-fangs'-pronouns-right-and-she-teases-him-while-carrying-herself-with-more-confidence.rpy:101
translate ru chapter_11D_e33e5a42:
# F "That wasnt so hard, was it?"
F "Не так уж и трудно, правда?"
# game/script/11D.anon-gets-fangs'-pronouns-right-and-she-teases-him-while-carrying-herself-with-more-confidence.rpy:103
translate ru chapter_11D_bbd7c711:
# A "Like plucking feathers."
A "Как выщипывать перья."
# game/script/11D.anon-gets-fangs'-pronouns-right-and-she-teases-him-while-carrying-herself-with-more-confidence.rpy:113
translate ru chapter_11D_9884602c:
# "She playfully elbows me again."
"Она снова игриво толкает меня локтем."
# game/script/11D.anon-gets-fangs'-pronouns-right-and-she-teases-him-while-carrying-herself-with-more-confidence.rpy:118
translate ru chapter_11D_de0f481d:
# "I think I get the feathers on the elbow thing now, because those things fucking dig in. Ow."
"Думаю, теперь я понимаю, для чего ей перья на локтях, потому что эти штуки жуть как впиваются в кожу. Ауч."
# game/script/11D.anon-gets-fangs'-pronouns-right-and-she-teases-him-while-carrying-herself-with-more-confidence.rpy:120
translate ru chapter_11D_93b069bf:
# F "Do you even have something to wear?"
F "У тебя есть что надеть?"
# game/script/11D.anon-gets-fangs'-pronouns-right-and-she-teases-him-while-carrying-herself-with-more-confidence.rpy:122
translate ru chapter_11D_d6f113de:
# A "I was going to ask my dad for his old clothes."
A "Я собирался попросить отца одолжить мне свой старый костюм."
# game/script/11D.anon-gets-fangs'-pronouns-right-and-she-teases-him-while-carrying-herself-with-more-confidence.rpy:124
translate ru chapter_11D_691321e0:
# F "You sure? I could ask Naser for his old stuff."
F "Ты уверен? Можно попросить Незера одолжить своё старьё."
# game/script/11D.anon-gets-fangs'-pronouns-right-and-she-teases-him-while-carrying-herself-with-more-confidence.rpy:126
translate ru chapter_11D_545ec2b5:
# A "Tail and wings."
A "Хвост и крылья."
# game/script/11D.anon-gets-fangs'-pronouns-right-and-she-teases-him-while-carrying-herself-with-more-confidence.rpy:128
translate ru chapter_11D_20e6cdee:
# F "Right, right."
F "Ах да, точно."
# game/script/11D.anon-gets-fangs'-pronouns-right-and-she-teases-him-while-carrying-herself-with-more-confidence.rpy:130
translate ru chapter_11D_170aecb8:
# A "What about you?"
A "А что насчёт тебя?"
# game/script/11D.anon-gets-fangs'-pronouns-right-and-she-teases-him-while-carrying-herself-with-more-confidence.rpy:132
translate ru chapter_11D_512aca98:
# A "You actually gonna wear a dress?"
A "Ты действительно наденешь платье?"
# game/script/11D.anon-gets-fangs'-pronouns-right-and-she-teases-him-while-carrying-herself-with-more-confidence.rpy:135
translate ru chapter_11D_c5bc9d08:
# F "Ive got this sick looking dress shirt{cps=*.1}...{/cps}"
F "У меня есть одна крутая официальная рубашка{cps=*.1}...{/cps}"
# game/script/11D.anon-gets-fangs'-pronouns-right-and-she-teases-him-while-carrying-herself-with-more-confidence.rpy:139
translate ru chapter_11D_6e34c67b:
# F "Naaaah, shirts suck."
F "Неее, рубашки отстой."
# game/script/11D.anon-gets-fangs'-pronouns-right-and-she-teases-him-while-carrying-herself-with-more-confidence.rpy:141
translate ru chapter_11D_4011d573:
# A "Wings again?"
A "Из-за крыльев?"
# game/script/11D.anon-gets-fangs'-pronouns-right-and-she-teases-him-while-carrying-herself-with-more-confidence.rpy:143
translate ru chapter_11D_1e4988eb:
# F "Wings again. At least I can wear a backless dress."
F "Ага, из-за крыльев. По крайней мере, я могу надеть платье с открытой спиной."
# game/script/11D.anon-gets-fangs'-pronouns-right-and-she-teases-him-while-carrying-herself-with-more-confidence.rpy:145
translate ru chapter_11D_51fa24ac:
# "I cup my chin and try to picture the dress."
"Я подпираю подбородок и пытаюсь представить это платье."
# game/script/11D.anon-gets-fangs'-pronouns-right-and-she-teases-him-while-carrying-herself-with-more-confidence.rpy:148
translate ru chapter_11D_489e95d6:
# "The heat creeping up my face tells Fang exactly what Im thinking."
"Моё покрасневшее лицо явно даёт Фэнг понять, о чём я думаю."
# game/script/11D.anon-gets-fangs'-pronouns-right-and-she-teases-him-while-carrying-herself-with-more-confidence.rpy:151
translate ru chapter_11D_0526363e:
# "I grin and nod approvingly."
"Я ухмыляюсь и одобрительно киваю."
# game/script/11D.anon-gets-fangs'-pronouns-right-and-she-teases-him-while-carrying-herself-with-more-confidence.rpy:160
translate ru chapter_11D_a96a1709:
# "And earn a third elbow to my side."
"И получаю третий удар локтем в бок."
# game/script/11D.anon-gets-fangs'-pronouns-right-and-she-teases-him-while-carrying-herself-with-more-confidence.rpy:165
translate ru chapter_11D_216af317:
# A "Wait, hold on."
A "Погодь, одну секунду."
# game/script/11D.anon-gets-fangs'-pronouns-right-and-she-teases-him-while-carrying-herself-with-more-confidence.rpy:167
translate ru chapter_11D_7295ea06:
# A "Do you still go by Fang, at least?"
A "Ты ведь всё ещё Фэнг, верно? Ну, в плане имени."
# game/script/11D.anon-gets-fangs'-pronouns-right-and-she-teases-him-while-carrying-herself-with-more-confidence.rpy:169
translate ru chapter_11D_be1db4d9:
# F "Why wouldnt I?"
F "Конечно, почему нет?"
# game/script/11D.anon-gets-fangs'-pronouns-right-and-she-teases-him-while-carrying-herself-with-more-confidence.rpy:171
translate ru chapter_11D_b816ea27:
# A "Cool, just checking."
A "Круто, просто уточняю."
# game/script/11D.anon-gets-fangs'-pronouns-right-and-she-teases-him-while-carrying-herself-with-more-confidence.rpy:173
translate ru chapter_11D_5e05e8cc:
# F "Taking it one step at a time, you know?"
F "Всё должно решаться постепенно, понимаешь? Не хочу бежать впереди паровоза."
# game/script/11D.anon-gets-fangs'-pronouns-right-and-she-teases-him-while-carrying-herself-with-more-confidence.rpy:176
translate ru chapter_11D_6a872b4e:
# F "Theres only about ten minutes left of class, are we gonna have enough time to finish the assignment?"
F "До конца урока осталось всего десять минут. Думаешь, нам хватит времени, чтобы закончить задание?"
# game/script/11D.anon-gets-fangs'-pronouns-right-and-she-teases-him-while-carrying-herself-with-more-confidence.rpy:178
translate ru chapter_11D_57423eeb:
# A "Shit, yeah. Forgot."
A "Чёрт, да. Совсем забыл."
# game/script/11D.anon-gets-fangs'-pronouns-right-and-she-teases-him-while-carrying-herself-with-more-confidence.rpy:180
translate ru chapter_11D_ba6be25b:
# "I flip over the page to reveal the entire second half of the assignment."
"Я переворачиваю страницу и осознаю, что мы сделали только половину."
# game/script/11D.anon-gets-fangs'-pronouns-right-and-she-teases-him-while-carrying-herself-with-more-confidence.rpy:182
translate ru chapter_11D_163abf5e:
# A "Its gonna be close though."
A "Да, надо бы поторопиться."
# game/script/11D.anon-gets-fangs'-pronouns-right-and-she-teases-him-while-carrying-herself-with-more-confidence.rpy:188
translate ru chapter_11D_9cd4cd02:
# "Fang scoots her chair closer to me."
"Фэнг пододвигает свой стул ближе ко мне."
# game/script/11D.anon-gets-fangs'-pronouns-right-and-she-teases-him-while-carrying-herself-with-more-confidence.rpy:190
translate ru chapter_11D_50c4b364:
# F "No time to waste then, yeah?"
F "Тогда не будем терять времени, верно?"
# game/script/11D.anon-gets-fangs'-pronouns-right-and-she-teases-him-while-carrying-herself-with-more-confidence.rpy:195
translate ru chapter_11D_f7d22d28:
# "Splitting the questions between us, Fang and I are able to finish the assignment seconds before the bell."
"Разделив вопросы между собой, нам с Фэнг удаётся закончить задание за секунды до звонка."
# game/script/11D.anon-gets-fangs'-pronouns-right-and-she-teases-him-while-carrying-herself-with-more-confidence.rpy:197
translate ru chapter_11D_be1869f0:
# "Somehow."
"Каким-то образом."
# game/script/11D.anon-gets-fangs'-pronouns-right-and-she-teases-him-while-carrying-herself-with-more-confidence.rpy:222
translate ru chapter_11D_467febe4:
# "We walk through the hall together, at least until we have to split to our separate classes."
"Мы вместе идём по коридору. По крайней мере, до тех пор, пока нам не придётся разойтись по разным классам."
# game/script/11D.anon-gets-fangs'-pronouns-right-and-she-teases-him-while-carrying-herself-with-more-confidence.rpy:229
translate ru chapter_11D_9c89f967:
# A "Hey wait, you did the word search bit this time, right?"
A "Эй, погодь, в этот раз ты всё же немного проштудировала терминологию, верно?"
# game/script/11D.anon-gets-fangs'-pronouns-right-and-she-teases-him-while-carrying-herself-with-more-confidence.rpy:231
translate ru chapter_11D_3b5f4850:
# A "I thought you said you were terrible at those?"
A "Ты ведь говорила, что плоха в этом?"
# game/script/11D.anon-gets-fangs'-pronouns-right-and-she-teases-him-while-carrying-herself-with-more-confidence.rpy:234
translate ru chapter_11D_1d896fde:
# F "And youve believed me up to this point."
F "И ты мне сразу же поверил."
# game/script/11D.anon-gets-fangs'-pronouns-right-and-she-teases-him-while-carrying-herself-with-more-confidence.rpy:237
translate ru chapter_11D_4888aeb8:
# A "I feel used."
A "Я чувствую себя использованным."
# game/script/11D.anon-gets-fangs'-pronouns-right-and-she-teases-him-while-carrying-herself-with-more-confidence.rpy:239
translate ru chapter_11D_9937667f:
# F "Thats because I used you."
F "Это потому что я действительно тебя использовала."
# game/script/11D.anon-gets-fangs'-pronouns-right-and-she-teases-him-while-carrying-herself-with-more-confidence.rpy:242
translate ru chapter_11D_459360ef:
# A "Ill get you fo-"
A "Блин, я тебя-"
# game/script/11D.anon-gets-fangs'-pronouns-right-and-she-teases-him-while-carrying-herself-with-more-confidence.rpy:244
translate ru chapter_11D_2f45bf79:
# Sp "Ah, Fang! There you are, a moment please."
Sp "Ох, Фэнг, вот ты где! Один момент, пожалуйста."
# game/script/11D.anon-gets-fangs'-pronouns-right-and-she-teases-him-while-carrying-herself-with-more-confidence.rpy:265
translate ru chapter_11D_f6e344b1:
# "We turn to see Principal Spears trailing behind us."
"Мы поворачиваемся и видим директора Спирса, что идёт за нами."
# game/script/11D.anon-gets-fangs'-pronouns-right-and-she-teases-him-while-carrying-herself-with-more-confidence.rpy:268
translate ru chapter_11D_5ce13cf6:
# F "Yes?"
F "Да?"
# game/script/11D.anon-gets-fangs'-pronouns-right-and-she-teases-him-while-carrying-herself-with-more-confidence.rpy:270
translate ru chapter_11D_6156b289:
# Sp "Fang, I was planning on asking you during your next class, but since I found you here{cps=*.1}...{/cps}"
Sp "Фэнг, я собирался спросить тебя на следующем уроке, но раз уж я поймал тебя здесь{cps=*.1}...{/cps}"
# game/script/11D.anon-gets-fangs'-pronouns-right-and-she-teases-him-while-carrying-herself-with-more-confidence.rpy:274
translate ru chapter_11D_3c8a2ebf:
# Sp "Im embarrassed to say were missing one event slot during prom. Scheduling error."
Sp "Мне неловко признаваться, но мы упускаем одно выпускное мероприятие. Ошибка планирования."
# game/script/11D.anon-gets-fangs'-pronouns-right-and-she-teases-him-while-carrying-herself-with-more-confidence.rpy:276
translate ru chapter_11D_76ea6404:
# Sp "And your teacher, Mr Jingo, recommended you for your musical talents."
Sp "И твой учитель, мистер Джинго, порекомендовал тебя за твои музыкальные таланты."
# game/script/11D.anon-gets-fangs'-pronouns-right-and-she-teases-him-while-carrying-herself-with-more-confidence.rpy:279
translate ru chapter_11D_04c0f670:
# Sp "Im not asking you to make your decision right now, but if youd consider helping out by performing a musical number or two that would help monumentally."
Sp "Я не прошу, чтобы решение было принято прямо сейчас, но если ты хочешь помочь, исполнив один или два музыкальных номера, это бы нас очень выручило."
# game/script/11D.anon-gets-fangs'-pronouns-right-and-she-teases-him-while-carrying-herself-with-more-confidence.rpy:283
translate ru chapter_11D_17c9bab6:
# F "Oh!"
F "Оу!"
# game/script/11D.anon-gets-fangs'-pronouns-right-and-she-teases-him-while-carrying-herself-with-more-confidence.rpy:285
translate ru chapter_11D_6de55ccf:
# A "Fangs going to play for the school?"
A "Фэнг будет играть на выпускном?"
# game/script/11D.anon-gets-fangs'-pronouns-right-and-she-teases-him-while-carrying-herself-with-more-confidence.rpy:287
translate ru chapter_11D_44a72c20:
# Sp "If Fang agrees to."
Sp "Если Фэнг согласится."
# game/script/11D.anon-gets-fangs'-pronouns-right-and-she-teases-him-while-carrying-herself-with-more-confidence.rpy:289
translate ru chapter_11D_1d7d6f5c:
# F "Well, uh{cps=*.1}...{/cps} Sure!"
F "Что ж, эм{cps=*.1}...{/cps} Конечно!"
# game/script/11D.anon-gets-fangs'-pronouns-right-and-she-teases-him-while-carrying-herself-with-more-confidence.rpy:291
translate ru chapter_11D_434cbfde:
# F "Yeah, Id love to do some songs for prom."
F "Да, я бы с радостью сыграла пару песен для выпускного."
# game/script/11D.anon-gets-fangs'-pronouns-right-and-she-teases-him-while-carrying-herself-with-more-confidence.rpy:294
translate ru chapter_11D_51868374:
# Sp "Fantastic news, Fang. When you can, please swing by the office."
Sp "Замечательно, Фэнг. Когда сможешь, пожалуйста, заскочи в мой офис."
# game/script/11D.anon-gets-fangs'-pronouns-right-and-she-teases-him-while-carrying-herself-with-more-confidence.rpy:296
translate ru chapter_11D_ce3e0202:
# F "Thank you, Principal Spears. Ill come after school today."
F "Спасибо, директор Спирс. Я загляну к вам после занятий."
# game/script/11D.anon-gets-fangs'-pronouns-right-and-she-teases-him-while-carrying-herself-with-more-confidence.rpy:298
translate ru chapter_11D_f776e92b:
# "Spears nods and heads off."
"Спирс кивает и удаляется."
# game/script/11D.anon-gets-fangs'-pronouns-right-and-she-teases-him-while-carrying-herself-with-more-confidence.rpy:311
translate ru chapter_11D_b207faa3:
# F "Shit, now I really need to get a good dress."
F "Чёрт, теперь мне действительно нужно хорошее платье."
# game/script/11D.anon-gets-fangs'-pronouns-right-and-she-teases-him-while-carrying-herself-with-more-confidence.rpy:316
translate ru chapter_11D_5411b7c8:
# A "I thought you had one?"
A "Я думал, что у тебя уже есть одно?"
# game/script/11D.anon-gets-fangs'-pronouns-right-and-she-teases-him-while-carrying-herself-with-more-confidence.rpy:319
translate ru chapter_11D_611db4cd:
# F "A party dress isnt a performance dress!"
F "Вечернее платье это не платье для выступления!"
# game/script/11D.anon-gets-fangs'-pronouns-right-and-she-teases-him-while-carrying-herself-with-more-confidence.rpy:321
translate ru chapter_11D_3fb0b181:
# F "Its like- you know what I mean."
F "Это как- ты знаешь, о чём я."
# game/script/11D.anon-gets-fangs'-pronouns-right-and-she-teases-him-while-carrying-herself-with-more-confidence.rpy:323
translate ru chapter_11D_a2d75666:
# A "I guess?"
A "Наверное?"
# game/script/11D.anon-gets-fangs'-pronouns-right-and-she-teases-him-while-carrying-herself-with-more-confidence.rpy:326
translate ru chapter_11D_f0304496:
# A "You dont seem as excited as last time you got somewhere to play."
A "Ты не выглядишь настолько восторженной, как в тот раз, когда ты играла в пиццерии."
# game/script/11D.anon-gets-fangs'-pronouns-right-and-she-teases-him-while-carrying-herself-with-more-confidence.rpy:329
translate ru chapter_11D_3ff16d82:
# F "I know, I mean... last time I had a whole band to play with."
F "Я знаю, просто... в тот раз я играла вместе с группой."
# game/script/11D.anon-gets-fangs'-pronouns-right-and-she-teases-him-while-carrying-herself-with-more-confidence.rpy:332
translate ru chapter_11D_ab955c42:
# A "You sure youll be alright playing solo?"
A "Ты уверена, что тебе будет комфортно играть соло?"
# game/script/11D.anon-gets-fangs'-pronouns-right-and-she-teases-him-while-carrying-herself-with-more-confidence.rpy:335
translate ru chapter_11D_25e87a4a:
# F "Probably."
F "Наверное."
# game/script/11D.anon-gets-fangs'-pronouns-right-and-she-teases-him-while-carrying-herself-with-more-confidence.rpy:337
translate ru chapter_11D_aa40aa72:
# F "Ill also need to practice a lot more{cps=*.1}...{/cps}"
F "Мне также придётся гораздо больше тренироваться{cps=*.1}...{/cps}"
# game/script/11D.anon-gets-fangs'-pronouns-right-and-she-teases-him-while-carrying-herself-with-more-confidence.rpy:341
translate ru chapter_11D_4c7c6bc0:
# F "Youll help me, right?"
F "Ты ведь мне поможешь, верно?"
# game/script/11D.anon-gets-fangs'-pronouns-right-and-she-teases-him-while-carrying-herself-with-more-confidence.rpy:343
translate ru chapter_11D_3370e6c2:
# A "Of course."
A "Конечно."
# game/script/11D.anon-gets-fangs'-pronouns-right-and-she-teases-him-while-carrying-herself-with-more-confidence.rpy:345
translate ru chapter_11D_a41da9b1:
# A "As long as you dont need me up on stage with you."
A "До тех пор, пока ты не потащишь меня на сцену."
# game/script/11D.anon-gets-fangs'-pronouns-right-and-she-teases-him-while-carrying-herself-with-more-confidence.rpy:348
translate ru chapter_11D_41df5b84:
# F "Im trying to keep the crowd from throwing things this time around, actually."
F "Не парься, на этот раз я бы хотела удержать толпу от бросания еды и мусора в мою сторону."
# game/script/11D.anon-gets-fangs'-pronouns-right-and-she-teases-him-while-carrying-herself-with-more-confidence.rpy:351
translate ru chapter_11D_9d65f64d:
# A "Bite me."
A "Да чтоб тебя."
# game/script/11D.anon-gets-fangs'-pronouns-right-and-she-teases-him-while-carrying-herself-with-more-confidence.rpy:353
translate ru chapter_11D_6a6820fd:
# F "Speaking of. Ill see you at lunch, right?"
F "Говоря о еде. Мы ведь увидимся на обеде, верно?"
# game/script/11D.anon-gets-fangs'-pronouns-right-and-she-teases-him-while-carrying-herself-with-more-confidence.rpy:355
translate ru chapter_11D_aae3e6db:
# A "Yeah, of course."
A "Ага, конечно."
# game/script/11D.anon-gets-fangs'-pronouns-right-and-she-teases-him-while-carrying-herself-with-more-confidence.rpy:365
translate ru chapter_11D_89c9615d:
# "Fang pecks me on the cheek and starts down the hall to her next class."
"Фэнг чмокает меня в щёку и уходит по коридору на свой следующий урок."
# game/script/11D.anon-gets-fangs'-pronouns-right-and-she-teases-him-while-carrying-herself-with-more-confidence.rpy:380
translate ru chapter_11D_e42b823d:
# "I feel my lips spread into a grin. Its kind of weird to think of it, but Im actually excited for prom."
"Я чувствую, как мои губы расплываются в ухмылке. Немного странно об этом думать, но я действительно с нетерпением жду выпускного вечера."
# game/script/11D.anon-gets-fangs'-pronouns-right-and-she-teases-him-while-carrying-herself-with-more-confidence.rpy:389
translate ru chapter_11D_21aa0119:
# "Man, I hope dads suit has actually been to the cleaner, I dont wanna disappoint."
"Блин, надеюсь, что отцовский костюм побывал в химчистке, не хочу разочаровать Фэнг."
# game/script/11D.anon-gets-fangs'-pronouns-right-and-she-teases-him-while-carrying-herself-with-more-confidence.rpy:392
translate ru chapter_11D_f1638dc1:
# "{cps=*.1}...{/cps}"
"{cps=*.1}...{/cps}"

View File

@ -1,475 +0,0 @@
# TODO: Translation updated at 2021-11-27 11:56
# game/script/12.5C.prom-night-intro.rpy:6
translate ru chapter_12_5C_5b8917d5:
# "{cps=*.2}-- One Month Later --{/cps}"
"{cps=*.2}-- Один месяц спустя --{/cps}"
# game/script/12.5C.prom-night-intro.rpy:12
translate ru chapter_12_5C_fb31b6dc:
# "Its prom night."
"Сегодня выпускной вечер."
# game/script/12.5C.prom-night-intro.rpy:14
translate ru chapter_12_5C_4d47554e:
# "My old man was kind enough to send over his old tuxedo from his time at high school."
"Мой старик был достаточно щедр, чтобы отправить мне свой старый смокинг со времён учёбы в старшей школе."
# game/script/12.5C.prom-night-intro.rpy:16
translate ru chapter_12_5C_82feb047:
# "It took a bit of sewing, but I got it looking pretty good."
"Пришлось немного подшить, но вышло вполне сносно."
# game/script/12.5C.prom-night-intro.rpy:19
translate ru chapter_12_5C_b7f799fa:
# "Judging by the wine stains on the sleeves, Dads made a lot of important announcements in this tuxedo."
"Судя по пятнам вина на рукавах, отец сделал множество важных объявлений в этом костюме."
# game/script/12.5C.prom-night-intro.rpy:21
translate ru chapter_12_5C_8668bbc0:
# "Gives it a bit of history, I guess."
"Придаёт ему немного историчности, я полагаю."
# game/script/12.5C.prom-night-intro.rpy:32
translate ru chapter_12_5C_3cd7f804:
# "When I arrive at Fangs place with a cheap corsage I see the Pomegranate Parasite waiting outside the front door."
"Когда я подхожу к дому Фэнг с дешёвым букетом в руках, я вижу гранатовую паразитку, ждущую у входной двери."
# game/script/12.5C.prom-night-intro.rpy:34
translate ru chapter_12_5C_a4a42fdc:
# "Great."
"Потрясающе."
# game/script/12.5C.prom-night-intro.rpy:37
translate ru chapter_12_5C_b633c5a0:
# "And dear god, how can she move in that dress."
"И господи боже, как она вообще может двигаться в этом платье."
# game/script/12.5C.prom-night-intro.rpy:39
translate ru chapter_12_5C_502e0f72:
# "The top half looks like its been shrink-wrapped to her body."
"Верхняя половина выглядит так, будто её приутюжили к телу."
# game/script/12.5C.prom-night-intro.rpy:42
translate ru chapter_12_5C_ef6e42e7:
# "And I'm one hundred percent certain there's nothing beneath the bottom half."
"И я на сто процентов уверен, что под нижней частью ничего нет."
# game/script/12.5C.prom-night-intro.rpy:55
translate ru chapter_12_5C_d5418678:
# N "Oh, I already knocked Anon."
N "О, я уже постучала, Анон."
# game/script/12.5C.prom-night-intro.rpy:57
translate ru chapter_12_5C_a0f58311:
# N "Naser will be out in a moment to invite us in, Im sure Fang will be getting ready too."
N "Незер вот-вот выйдет и пригласит нас внутрь. Я уверена, что Фэнг сейчас тоже готовится."
# game/script/12.5C.prom-night-intro.rpy:59
translate ru chapter_12_5C_7e876c32:
# N "Ive heard the two of you are going to prom together!"
N "Я слышала, что вы двое пойдёте на выпускной вместе!"
# game/script/12.5C.prom-night-intro.rpy:62
translate ru chapter_12_5C_bb3d4bdb:
# "Ladies and gentlemen, the next Sherlock Holmes."
"Дамы и господа, следующий Шерлок Холмс."
# game/script/12.5C.prom-night-intro.rpy:65
translate ru chapter_12_5C_436d6ab5:
# A "No, I just happen to be here in a suit to go golfing."
A "Нет, я просто случайно оказался здесь в костюме, чтобы сыграть в гольф."
# game/script/12.5C.prom-night-intro.rpy:67
translate ru chapter_12_5C_6cb74318:
# "I ignore her, focusing instead on not stabbing my palm even more on this flowers thorns."
"Я игнорирую её, сосредотачиваясь на том, чтобы не поранить свою ладонь ещё сильнее о шипы этих цветов."
# game/script/12.5C.prom-night-intro.rpy:70
translate ru chapter_12_5C_16596c00:
# "Fuck it, free is free."
"Похер, на бесплатное не жалуются."
# game/script/12.5C.prom-night-intro.rpy:72
translate ru chapter_12_5C_5dcc290b:
# "And nothing more free than a five finger discount from the neighbors yard."
"И нет ничего более бесплатного, чем стопроцентная скидка с соседского двора."
# game/script/12.5C.prom-night-intro.rpy:75
translate ru chapter_12_5C_5954bb4a:
# N "You and Fang just make the cutest couple! Did you two sign up for prom king and queen?"
N "Вы с Фэнг образуете невероятно симпатичную пару! Вы участвуете в конкурсе на короля и королеву выпускного?"
# game/script/12.5C.prom-night-intro.rpy:77
translate ru chapter_12_5C_0a7f51c1:
# A "Nah. She said something about the fascist sexist monarchy system."
A "Не. Она сказала что-то про ‘фашистскую сексистскую монархическую систему’."
# game/script/12.5C.prom-night-intro.rpy:80
translate ru chapter_12_5C_9bdc511e:
# N "Well, Naser and I have entered and we are going to be prom royalty. Ooooh, I can not wait to wear that beautiful tiara, I picked it out and everything and the crown for Naser-"
N "Что ж, а мы с Незером записались, и мы станем королевской парой выпускного. Ооох, мне уже не терпится надеть эту потрясающую тиару, которую я выбрала, как и ту корону для Незера-"
# game/script/12.5C.prom-night-intro.rpy:82
translate ru chapter_12_5C_822b1066:
# "Ive already tuned her out."
"Я уже перестал её слушать."
# game/script/12.5C.prom-night-intro.rpy:88
translate ru chapter_12_5C_8a1ec6ef:
# "Naser opens the door."
"Незер открывает дверь."
# game/script/12.5C.prom-night-intro.rpy:99
translate ru chapter_12_5C_306719ab:
# "Well if that isnt the fanciest jacket Ive seen in a while."
"Ну разве это не самый модный пиджак, который я когда-либо видел."
# game/script/12.5C.prom-night-intro.rpy:101
translate ru chapter_12_5C_d7f4e8c0:
# "Its certainly better than the background of Avatar he always wears."
"По крайней мере, это лучше того задника из Аватара, который он постоянно носит."
# game/script/12.5C.prom-night-intro.rpy:104
translate ru chapter_12_5C_493ee04c:
# Nas "Sorry to keep you waiting, Naomi."
Nas "Прости, что заставил ждать, Наоми."
# game/script/12.5C.prom-night-intro.rpy:107
translate ru chapter_12_5C_91da1c4f:
# Nas "This thing is a nightmare to get over my wings."
Nas "Продевать крылья через эту штуку сущий кошмар."
# game/script/12.5C.prom-night-intro.rpy:111
translate ru chapter_12_5C_5edca3a8:
# Nas "Oh, Anon! Come on in, didnt know you were already here."
Nas "О, Анон! Заходи, я и не знал, что ты уже здесь."
# game/script/12.5C.prom-night-intro.rpy:113
translate ru chapter_12_5C_e569dd51:
# "He waves for the two of us to enter, pecking Naomi on the cheek when she passes."
"Он машет нам двоим, приглашая войти, и чмокает Наоми в щёку, когда та проходит рядом."
# game/script/12.5C.prom-night-intro.rpy:132
translate ru chapter_12_5C_8937793b:
# "Fangs Mother speaks up from the kitchen."
"Голос мамы Фэнг доносится с кухни."
# game/script/12.5C.prom-night-intro.rpy:134
translate ru chapter_12_5C_292ba4e4:
# LM "Oh! Oh! Is that Anon?"
LM "Оу! Оу! Это Анон?"
# game/script/12.5C.prom-night-intro.rpy:139
translate ru chapter_12_5C_324e67a8:
# Nas "Here we go."
Nas "Началось."
# game/script/12.5C.prom-night-intro.rpy:151
translate ru chapter_12_5C_5d974dd1:
# "The small pterodactyl comes out, a bowl shes struggling to stir in her arms."
"Маленький птеродактиль появляется с миской в руках, в которой она изо всех сил что-то размешивает."
# game/script/12.5C.prom-night-intro.rpy:153
translate ru chapter_12_5C_19b5a843:
# LM "My, arent you handsome."
LM "Божечки, ну разве ты не красавец."
# game/script/12.5C.prom-night-intro.rpy:156
translate ru chapter_12_5C_5230fd33:
# LM "Pictures! I need to get pictures of you and Lucy!"
LM "Фотографии! Я должна сделать фотографии тебя и Люси!"
# game/script/12.5C.prom-night-intro.rpy:158
translate ru chapter_12_5C_27635b64:
# "She sets the bowl aside on the coffee table to frantically search for a polaroid camera."
"Она ставит миску на кофейный столик и лихорадочно ищет полароидный фотоаппарат."
# game/script/12.5C.prom-night-intro.rpy:160
translate ru chapter_12_5C_c19e16f5:
# LM "To think Lucy would have such a wonderful young man to take her to prom!"
LM "Подумать только, у Люси будет такой замечательный молодой человек, который поведёт её на выпускной!"
# game/script/12.5C.prom-night-intro.rpy:165
translate ru chapter_12_5C_f0738878:
# LM "Aha! Found it. Hold still, dear."
LM "Ага! Нашла его. Стой смирно, дорогуша."
# game/script/12.5C.prom-night-intro.rpy:176
translate ru chapter_12_5C_7438a32e:
# "ARGH! Like getting slapped in the face by the Suns dick!"
"АРГХ! Будто солнце зарядило мне членом по лицу!"
# game/script/12.5C.prom-night-intro.rpy:186
translate ru chapter_12_5C_05dbb48f:
# "I blink the blindness away. So thats why Naser has those fucking aviators."
"Я моргаю, прогоняя слепоту. Так вот почему Незер надел эти грёбаные авиаторы."
# game/script/12.5C.prom-night-intro.rpy:190
translate ru chapter_12_5C_3cb75d42:
# LM "Lucy will be downstairs in a bit, shes just getting the last of her makeup on!"
LM "Люси скоро спустится, она как раз заканчивает краситься!"
# game/script/12.5C.prom-night-intro.rpy:192
translate ru chapter_12_5C_67a2d8df:
# LM "In the meantime, take a seat! Ive got some cookies in the oven that are almost ready!"
LM "А пока что присаживайся! Печенье уже почти готово!"
# game/script/12.5C.prom-night-intro.rpy:195
translate ru chapter_12_5C_b846611f:
# A "Er, yes, thank you maam."
A "Эм, да. Спасибо, мэм."
# game/script/12.5C.prom-night-intro.rpy:210
translate ru chapter_12_5C_332cabf2:
# "I take my seat in the usual spot, sinking in and feeling the pillows conform around my spine."
"Я занимаю своё привычное место и чувствую, как подушки начинают обволакивать мой позвоночник."
# game/script/12.5C.prom-night-intro.rpy:213
translate ru chapter_12_5C_86a73894:
# "This thing must cost a fortune."
"Эта штука, должно быть, стоит целое состояние."
# game/script/12.5C.prom-night-intro.rpy:215
translate ru chapter_12_5C_17ce8375:
# "Fangs dad is a police commissioner if I recall."
"Насколько я помню, отец Фэнг комиссар полиции."
# game/script/12.5C.prom-night-intro.rpy:217
translate ru chapter_12_5C_540128ad:
# "That explains the luxurious furnishings."
"Это объясняет роскошную обстановку."
# game/script/12.5C.prom-night-intro.rpy:220
translate ru chapter_12_5C_75b60f44:
# "Now that I think about it, Im surprised I havent seen him yet."
"Если подумать, странно, что я его ещё не видел."
# game/script/12.5C.prom-night-intro.rpy:230
translate ru chapter_12_5C_4a3c0f29:
# LD "So{cps=*.1}...{/cps}"
LD "Что ж{cps=*.1}...{/cps}"
# game/script/12.5C.prom-night-intro.rpy:237
translate ru chapter_12_5C_69fab3fa:
# "I hope I didnt just ruin these slacks."
"Надеюсь, я только что не испачкал свои брюки."
# game/script/12.5C.prom-night-intro.rpy:240
translate ru chapter_12_5C_64a9907b:
# A "Good evening, sir."
A "Добрый вечер, сэр."
# game/script/12.5C.prom-night-intro.rpy:242
translate ru chapter_12_5C_69571405:
# A "I didnt even see you in your chair, sir."
A "Я даже не заметил вас в вашем кресле, сэр."
# game/script/12.5C.prom-night-intro.rpy:244
translate ru chapter_12_5C_f204d00a:
# A "My apologies."
A "Прошу прощения."
# game/script/12.5C.prom-night-intro.rpy:247
translate ru chapter_12_5C_e0644b79:
# LD "Dont sweat it, son."
LD "Не парься, сынок."
# game/script/12.5C.prom-night-intro.rpy:249
translate ru chapter_12_5C_108f2bc1:
# LD "Thing about humans, as well as many carnivores, is that their vision is based largely on movement."
LD "Проблема людей, как и многих других плотоядных, заключается в том, что их зрение во многом полагается на движение."
# game/script/12.5C.prom-night-intro.rpy:251
translate ru chapter_12_5C_f5de4c30:
# LD "Youd be surprised how effective staying quiet and stationary can be."
LD "Ты удивишься, насколько эффективным может быть пребывание в полной тишине и неподвижности."
# game/script/12.5C.prom-night-intro.rpy:254
translate ru chapter_12_5C_a3fea71c:
# LD "How close you can get to someone without them knowing-"
LD "Насколько близко ты можешь подобраться к кому-то без их ведома-"
# game/script/12.5C.prom-night-intro.rpy:259
translate ru chapter_12_5C_e855c047:
# LM "Sweetheart." with vpunch
LM "Дорогой." with vpunch
# game/script/12.5C.prom-night-intro.rpy:262
translate ru chapter_12_5C_0b459976:
# LM "No.{w=.3} Intimidating.{w=.3} The suitor."
LM "Не.{w=.3} Запугивай.{w=.3} Ухажёра."
# game/script/12.5C.prom-night-intro.rpy:268
translate ru chapter_12_5C_f55b445c:
# "The big guy deflates a bit in his chair."
"Здоровяк слегка съёживается в своём кресле."
# game/script/12.5C.prom-night-intro.rpy:270
translate ru chapter_12_5C_09179a49:
# LD "Point is, dont get any funny ideas."
LD "Суть в том, что не совершай того, о чём потом пожалеешь."
# game/script/12.5C.prom-night-intro.rpy:272
translate ru chapter_12_5C_c4eaa8d1:
# A "Yessir."
A "Дасэр."
# game/script/12.5C.prom-night-intro.rpy:278
translate ru chapter_12_5C_6c1b7e98:
# N "Were all taking the NasCar, right?"
N "Мы ведь поедем на НезКаре, верно?"
# game/script/12.5C.prom-night-intro.rpy:280
translate ru chapter_12_5C_a76bbbc0:
# Nas "Yeah, yeah."
Nas "Да, да."
# game/script/12.5C.prom-night-intro.rpy:282
translate ru chapter_12_5C_03c51a36:
# Nas "Once Fang gets down well skedaddle."
Nas "Как только Фэнг спустится, мы смоемся."
# game/script/12.5C.prom-night-intro.rpy:285
translate ru chapter_12_5C_b13782b1:
# A "So until then we just sit and chill?"
A "Значит, до тех пор мы просто сидим и чиллим?"
# game/script/12.5C.prom-night-intro.rpy:289
translate ru chapter_12_5C_07aa610d:
# N "We could take more pictures!"
N "Мы могли бы сделать больше фотографий!"
# game/script/12.5C.prom-night-intro.rpy:293
translate ru chapter_12_5C_a9e53eb7:
# "{cps=*.3}Please no.{/cps}"
"{cps=*.3}Пожалуйста, не надо.{/cps}"
# game/script/12.5C.prom-night-intro.rpy:304
translate ru chapter_12_5C_4e2f7c18:
# LM "Oh! I would love to make this a little photo op!"
LM "Ох! Я бы с удовольствием устроила маленькую фотосессию!"
# game/script/12.5C.prom-night-intro.rpy:424
translate ru chapter_12_5C_ce4cab13:
# "Thirty photos later and I never want to see another camera again."
"Тридцать фоток спустя, и я больше никогда в жизни не хочу видеть камеру."
# game/script/12.5C.prom-night-intro.rpy:426
translate ru chapter_12_5C_24b81bf1:
# "Fangs mom decided to take pictures of every possible combination of us."
"Мама Фэнг решила сфотографировать нас во всех возможных комбинациях."
# game/script/12.5C.prom-night-intro.rpy:428
translate ru chapter_12_5C_448d7436:
# "I dont know which was worse, having to pose with Naomi or Fangs dad digging his murder claws into my shoulder."
"Я не знаю, что хуже: позировать с Наоми или с отцом Фэнг, вонзающим свои убийственные когти в моё плечо."
# game/script/12.5C.prom-night-intro.rpy:430
translate ru chapter_12_5C_3d2f4eaf:
# "Ive lost nearly all feeling in that arm."
"Я потерял почти всю чувствительность в этой руке."
# game/script/12.5C.prom-night-intro.rpy:432
translate ru chapter_12_5C_faa0485d:
# "Pretty sure thatll leave a bruise worse than my accelerated hug with the stair bollard last month."
"Уверен, что это оставит синяк похуже, чем моё скоростное объятие с лестничным столбиком на прошлой неделе."
# game/script/12.5C.prom-night-intro.rpy:435
translate ru chapter_12_5C_da8313ca:
# "At least the pics with Naser were a nice reprieve."
"По крайней мере, фотографии с Незером были хорошей отдушиной."
# game/script/12.5C.prom-night-intro.rpy:437
translate ru chapter_12_5C_0b3f76cd:
# "We ended up looking like the blues brothers, standing side by side in fuck ugly suits."
"Вышло так, что мы выглядели как Братья Блюз, стоя бок о бок в чертовски уродливых костюмах."
# game/script/12.5C.prom-night-intro.rpy:441
translate ru chapter_12_5C_0e089e57:
# "Just as I was about to resign myself to premature blindness from the camera flash, my saviour arrives."
"Ровно в тот момент, когда я уже собирался смириться с преждевременной слепотой от вспышки фотоаппарата, появляется мой спаситель."
# game/script/12.5C.prom-night-intro.rpy:444
translate ru chapter_12_5C_dc23d57b:
# Lucy "Oh, Anon, youre already here!"
Lucy "О, Анон, ты уже здесь!"

View File

@ -1,475 +0,0 @@
# TODO: Translation updated at 2021-11-27 11:56
# game/script/12.5D.prom-night-intro.rpy:6
translate ru chapter_12_5D_5b8917d5:
# "{cps=*.2}-- One Month Later --{/cps}"
"{cps=*.2}-- Один месяц спустя --{/cps}"
# game/script/12.5D.prom-night-intro.rpy:12
translate ru chapter_12_5D_fb31b6dc:
# "Its prom night."
"Сегодня выпускной вечер."
# game/script/12.5D.prom-night-intro.rpy:14
translate ru chapter_12_5D_4d47554e:
# "My old man was kind enough to send over his old tuxedo from his time at high school."
"Мой старик был достаточно щедр, чтобы отправить мне свой старый смокинг со времён учёбы в старшей школе."
# game/script/12.5D.prom-night-intro.rpy:16
translate ru chapter_12_5D_82feb047:
# "It took a bit of sewing, but I got it looking pretty good."
"Пришлось немного подшить, но вышло вполне сносно."
# game/script/12.5D.prom-night-intro.rpy:19
translate ru chapter_12_5D_b7f799fa:
# "Judging by the wine stains on the sleeves, Dads made a lot of important announcements in this tuxedo."
"Судя по пятнам вина на рукавах, отец сделал множество важных объявлений в этом костюме."
# game/script/12.5D.prom-night-intro.rpy:21
translate ru chapter_12_5D_8668bbc0:
# "Gives it a bit of history, I guess."
"Придаёт ему немного историчности, я полагаю."
# game/script/12.5D.prom-night-intro.rpy:32
translate ru chapter_12_5D_3cd7f804:
# "When I arrive at Fangs place with a cheap corsage I see the Pomegranate Parasite waiting outside the front door."
"Когда я подхожу к дому Фэнг с дешёвым букетом в руках, я вижу гранатовую паразитку, ждущую у входной двери."
# game/script/12.5D.prom-night-intro.rpy:34
translate ru chapter_12_5D_a4a42fdc:
# "Great."
"Потрясающе."
# game/script/12.5D.prom-night-intro.rpy:37
translate ru chapter_12_5D_b633c5a0:
# "And dear god, how can she move in that dress."
"И господи боже, как она вообще может двигаться в этом платье."
# game/script/12.5D.prom-night-intro.rpy:39
translate ru chapter_12_5D_502e0f72:
# "The top half looks like its been shrink-wrapped to her body."
"Верхняя половина выглядит так, будто её приутюжили к телу."
# game/script/12.5D.prom-night-intro.rpy:42
translate ru chapter_12_5D_ef6e42e7:
# "And I'm one hundred percent certain there's nothing beneath the bottom half."
"И я на сто процентов уверен, что под нижней частью ничего нет."
# game/script/12.5D.prom-night-intro.rpy:55
translate ru chapter_12_5D_d5418678:
# N "Oh, I already knocked Anon."
N "О, я уже постучала, Анон."
# game/script/12.5D.prom-night-intro.rpy:57
translate ru chapter_12_5D_a0f58311:
# N "Naser will be out in a moment to invite us in, Im sure Fang will be getting ready too."
N "Незер вот-вот выйдет и пригласит нас внутрь. Я уверена, что Фэнг сейчас тоже готовится."
# game/script/12.5D.prom-night-intro.rpy:59
translate ru chapter_12_5D_7e876c32:
# N "Ive heard the two of you are going to prom together!"
N "Я слышала, что вы двое пойдёте на выпускной вместе!"
# game/script/12.5D.prom-night-intro.rpy:62
translate ru chapter_12_5D_bb3d4bdb:
# "Ladies and gentlemen, the next Sherlock Holmes."
"Дамы и господа, следующий Шерлок Холмс."
# game/script/12.5D.prom-night-intro.rpy:65
translate ru chapter_12_5D_436d6ab5:
# A "No, I just happen to be here in a suit to go golfing."
A "Нет, я просто случайно оказался здесь в костюме, чтобы сыграть в гольф."
# game/script/12.5D.prom-night-intro.rpy:67
translate ru chapter_12_5D_6cb74318:
# "I ignore her, focusing instead on not stabbing my palm even more on this flowers thorns."
"Я игнорирую её, сосредотачиваясь на том, чтобы не поранить свою ладонь ещё сильнее о шипы этих цветов."
# game/script/12.5D.prom-night-intro.rpy:70
translate ru chapter_12_5D_16596c00:
# "Fuck it, free is free."
"Похер, на бесплатное не жалуются."
# game/script/12.5D.prom-night-intro.rpy:72
translate ru chapter_12_5D_5dcc290b:
# "And nothing more free than a five finger discount from the neighbors yard."
"И нет ничего более бесплатного, чем стопроцентная скидка с соседского двора."
# game/script/12.5D.prom-night-intro.rpy:75
translate ru chapter_12_5D_5954bb4a:
# N "You and Fang just make the cutest couple! Did you two sign up for prom king and queen?"
N "Вы с Фэнг образуете невероятно симпатичную пару! Вы участвуете в конкурсе на короля и королеву выпускного?"
# game/script/12.5D.prom-night-intro.rpy:77
translate ru chapter_12_5D_0a7f51c1:
# A "Nah. She said something about the fascist sexist monarchy system."
A "Не. Она сказала что-то про ‘фашистскую сексистскую монархическую систему’."
# game/script/12.5D.prom-night-intro.rpy:80
translate ru chapter_12_5D_9bdc511e:
# N "Well, Naser and I have entered and we are going to be prom royalty. Ooooh, I can not wait to wear that beautiful tiara, I picked it out and everything and the crown for Naser-"
N "Что ж, а мы с Незером записались, и мы станем королевской парой выпускного. Ооох, мне уже не терпится надеть эту потрясающую тиару, которую я выбрала, как и ту корону для Незера-"
# game/script/12.5D.prom-night-intro.rpy:82
translate ru chapter_12_5D_822b1066:
# "Ive already tuned her out."
"Я уже перестал её слушать."
# game/script/12.5D.prom-night-intro.rpy:88
translate ru chapter_12_5D_8a1ec6ef:
# "Naser opens the door."
"Незер открывает дверь."
# game/script/12.5D.prom-night-intro.rpy:99
translate ru chapter_12_5D_306719ab:
# "Well if that isnt the fanciest jacket Ive seen in a while."
"Ну разве это не самый модный пиджак, который я когда-либо видел."
# game/script/12.5D.prom-night-intro.rpy:101
translate ru chapter_12_5D_d7f4e8c0:
# "Its certainly better than the background of Avatar he always wears."
"По крайней мере, это лучше того задника из Аватара, который он постоянно носит."
# game/script/12.5D.prom-night-intro.rpy:104
translate ru chapter_12_5D_493ee04c:
# Nas "Sorry to keep you waiting, Naomi."
Nas "Прости, что заставил ждать, Наоми."
# game/script/12.5D.prom-night-intro.rpy:107
translate ru chapter_12_5D_91da1c4f:
# Nas "This thing is a nightmare to get over my wings."
Nas "Продевать крылья через эту штуку сущий кошмар."
# game/script/12.5D.prom-night-intro.rpy:111
translate ru chapter_12_5D_5edca3a8:
# Nas "Oh, Anon! Come on in, didnt know you were already here."
Nas "О, Анон! Заходи, я и не знал, что ты уже здесь."
# game/script/12.5D.prom-night-intro.rpy:113
translate ru chapter_12_5D_e569dd51:
# "He waves for the two of us to enter, pecking Naomi on the cheek when she passes."
"Он машет нам двоим, приглашая войти, и чмокает Наоми в щёку, когда та проходит рядом."
# game/script/12.5D.prom-night-intro.rpy:132
translate ru chapter_12_5D_8937793b:
# "Fangs Mother speaks up from the kitchen."
"Голос мамы Фэнг доносится с кухни."
# game/script/12.5D.prom-night-intro.rpy:134
translate ru chapter_12_5D_2e45fb29:
# FM "Oh! Oh! Is that Anon?"
FM "Оу! Оу! Это Анон?"
# game/script/12.5D.prom-night-intro.rpy:139
translate ru chapter_12_5D_324e67a8:
# Nas "Here we go."
Nas "Началось."
# game/script/12.5D.prom-night-intro.rpy:151
translate ru chapter_12_5D_5d974dd1:
# "The small pterodactyl comes out, a bowl shes struggling to stir in her arms."
"Маленький птеродактиль появляется с миской в руках, в которой она изо всех сил что-то размешивает."
# game/script/12.5D.prom-night-intro.rpy:153
translate ru chapter_12_5D_4e428ffa:
# FM "My, arent you handsome."
FM "Божечки, ну разве ты не красавец."
# game/script/12.5D.prom-night-intro.rpy:156
translate ru chapter_12_5D_3fd9c2b1:
# FM "Pictures! I need to get pictures of you and Lucy!"
FM "Фотографии! Я должна сделать фотографии тебя и Люси!"
# game/script/12.5D.prom-night-intro.rpy:158
translate ru chapter_12_5D_27635b64:
# "She sets the bowl aside on the coffee table to frantically search for a polaroid camera."
"Она ставит миску на кофейный столик и лихорадочно ищет полароидный фотоаппарат."
# game/script/12.5D.prom-night-intro.rpy:160
translate ru chapter_12_5D_f47efee5:
# FM "To think Lucy would have such a wonderful young man to take her to prom!"
FM "Подумать только, у Люси будет такой замечательный молодой человек, который поведёт её на выпускной!"
# game/script/12.5D.prom-night-intro.rpy:165
translate ru chapter_12_5D_7498ef8b:
# FM "Aha! Found it. Hold still, dear."
FM "Ага! Нашла его. Стой смирно, дорогуша."
# game/script/12.5D.prom-night-intro.rpy:176
translate ru chapter_12_5D_7438a32e:
# "ARGH! Like getting slapped in the face by the Suns dick!"
"АРГХ! Будто солнце зарядило мне членом по лицу!"
# game/script/12.5D.prom-night-intro.rpy:186
translate ru chapter_12_5D_05dbb48f:
# "I blink the blindness away. So thats why Naser has those fucking aviators."
"Я моргаю, прогоняя слепоту. Так вот почему Незер надел эти грёбаные авиаторы."
# game/script/12.5D.prom-night-intro.rpy:190
translate ru chapter_12_5D_14e13582:
# FM "Lucy will be downstairs in a bit, shes just getting the last of her makeup on!"
FM "Люси скоро спустится, она как раз заканчивает краситься!"
# game/script/12.5D.prom-night-intro.rpy:192
translate ru chapter_12_5D_21794e11:
# FM "In the meantime, take a seat! Ive got some cookies in the oven that are almost ready!"
FM "А пока что присаживайся! Печенье уже почти готово!"
# game/script/12.5D.prom-night-intro.rpy:195
translate ru chapter_12_5D_b846611f:
# A "Er, yes, thank you maam."
A "Эм, да. Спасибо, мэм."
# game/script/12.5D.prom-night-intro.rpy:210
translate ru chapter_12_5D_332cabf2:
# "I take my seat in the usual spot, sinking in and feeling the pillows conform around my spine."
"Я занимаю своё привычное место и чувствую, как подушки начинают обволакивать мой позвоночник."
# game/script/12.5D.prom-night-intro.rpy:213
translate ru chapter_12_5D_86a73894:
# "This thing must cost a fortune."
"Эта штука, должно быть, стоит целое состояние."
# game/script/12.5D.prom-night-intro.rpy:215
translate ru chapter_12_5D_17ce8375:
# "Fangs dad is a police commissioner if I recall."
"Насколько я помню, отец Фэнг комиссар полиции."
# game/script/12.5D.prom-night-intro.rpy:217
translate ru chapter_12_5D_540128ad:
# "That explains the luxurious furnishings."
"Это объясняет роскошную обстановку."
# game/script/12.5D.prom-night-intro.rpy:220
translate ru chapter_12_5D_75b60f44:
# "Now that I think about it, Im surprised I havent seen him yet."
"Если подумать, странно, что я его ещё не видел."
# game/script/12.5D.prom-night-intro.rpy:230
translate ru chapter_12_5D_1e956ab1:
# FD "So{cps=*.1}...{/cps}"
FD "Что ж{cps=*.1}...{/cps}"
# game/script/12.5D.prom-night-intro.rpy:237
translate ru chapter_12_5D_69fab3fa:
# "I hope I didnt just ruin these slacks."
"Надеюсь, я только что не испачкал свои брюки."
# game/script/12.5D.prom-night-intro.rpy:240
translate ru chapter_12_5D_64a9907b:
# A "Good evening, sir."
A "Добрый вечер, сэр."
# game/script/12.5D.prom-night-intro.rpy:242
translate ru chapter_12_5D_69571405:
# A "I didnt even see you in your chair, sir."
A "Я даже не заметил вас в вашем кресле, сэр."
# game/script/12.5D.prom-night-intro.rpy:244
translate ru chapter_12_5D_f204d00a:
# A "My apologies."
A "Прошу прощения."
# game/script/12.5D.prom-night-intro.rpy:247
translate ru chapter_12_5D_47a67116:
# FD "Dont sweat it, son."
FD "Не парься, сынок."
# game/script/12.5D.prom-night-intro.rpy:249
translate ru chapter_12_5D_f34028d2:
# FD "Thing about humans, as well as many carnivores, is that their vision is based largely on movement."
FD "Проблема людей, как и многих других плотоядных, заключается в том, что их зрение во многом полагается на движение."
# game/script/12.5D.prom-night-intro.rpy:251
translate ru chapter_12_5D_769d5c4d:
# FD "Youd be surprised how effective staying quiet and stationary can be."
FD "Ты удивишься, насколько эффективным может быть пребывание в полной тишине и неподвижности."
# game/script/12.5D.prom-night-intro.rpy:254
translate ru chapter_12_5D_13b059c4:
# FD "How close you can get to someone without them knowing-"
FD "Насколько близко ты можешь подобраться к кому-то без их ведома-"
# game/script/12.5D.prom-night-intro.rpy:259
translate ru chapter_12_5D_5403b4b9:
# FM "Sweetheart." with vpunch
FM "Дорогой." with vpunch
# game/script/12.5D.prom-night-intro.rpy:262
translate ru chapter_12_5D_5bdaff2f:
# FM "No.{w=.3} Intimidating.{w=.3} The suitor."
FM "Не.{w=.3} Запугивай.{w=.3} Ухажёра."
# game/script/12.5D.prom-night-intro.rpy:268
translate ru chapter_12_5D_f55b445c:
# "The big guy deflates a bit in his chair."
"Здоровяк слегка съёживается в своём кресле."
# game/script/12.5D.prom-night-intro.rpy:270
translate ru chapter_12_5D_5acd40b4:
# FD "Point is, dont get any funny ideas."
FD "Суть в том, что не совершай того, о чём потом пожалеешь."
# game/script/12.5D.prom-night-intro.rpy:272
translate ru chapter_12_5D_c4eaa8d1:
# A "Yessir."
A "Дасэр."
# game/script/12.5D.prom-night-intro.rpy:278
translate ru chapter_12_5D_6c1b7e98:
# N "Were all taking the NasCar, right?"
N "Мы ведь поедем на НезКаре, верно?"
# game/script/12.5D.prom-night-intro.rpy:280
translate ru chapter_12_5D_a76bbbc0:
# Nas "Yeah, yeah."
Nas "Да, да."
# game/script/12.5D.prom-night-intro.rpy:282
translate ru chapter_12_5D_03c51a36:
# Nas "Once Fang gets down well skedaddle."
Nas "Как только Фэнг спустится, мы смоемся."
# game/script/12.5D.prom-night-intro.rpy:285
translate ru chapter_12_5D_b13782b1:
# A "So until then we just sit and chill?"
A "Значит, до тех пор мы просто сидим и чиллим?"
# game/script/12.5D.prom-night-intro.rpy:289
translate ru chapter_12_5D_07aa610d:
# N "We could take more pictures!"
N "Мы могли бы сделать больше фотографий!"
# game/script/12.5D.prom-night-intro.rpy:293
translate ru chapter_12_5D_a9e53eb7:
# "{cps=*.3}Please no.{/cps}"
"{cps=*.3}Пожалуйста, не надо.{/cps}"
# game/script/12.5D.prom-night-intro.rpy:304
translate ru chapter_12_5D_4e8656fe:
# FM "Oh! I would love to make this a little photo op!"
FM "Ох! Я бы с удовольствием устроила маленькую фотосессию!"
# game/script/12.5D.prom-night-intro.rpy:424
translate ru chapter_12_5D_ce4cab13:
# "Thirty photos later and I never want to see another camera again."
"Тридцать фоток спустя, и я больше никогда в жизни не хочу видеть камеру."
# game/script/12.5D.prom-night-intro.rpy:426
translate ru chapter_12_5D_24b81bf1:
# "Fangs mom decided to take pictures of every possible combination of us."
"Мама Фэнг решила сфотографировать нас во всех возможных комбинациях."
# game/script/12.5D.prom-night-intro.rpy:428
translate ru chapter_12_5D_448d7436:
# "I dont know which was worse, having to pose with Naomi or Fangs dad digging his murder claws into my shoulder."
"Я не знаю, что хуже: позировать с Наоми или с отцом Фэнг, вонзающим свои убийственные когти в моё плечо."
# game/script/12.5D.prom-night-intro.rpy:430
translate ru chapter_12_5D_3d2f4eaf:
# "Ive lost nearly all feeling in that arm."
"Я потерял почти всю чувствительность в этой руке."
# game/script/12.5D.prom-night-intro.rpy:432
translate ru chapter_12_5D_faa0485d:
# "Pretty sure thatll leave a bruise worse than my accelerated hug with the stair bollard last month."
"Уверен, что это оставит синяк похуже, чем моё скоростное объятие с лестничным столбиком на прошлой неделе."
# game/script/12.5D.prom-night-intro.rpy:435
translate ru chapter_12_5D_da8313ca:
# "At least the pics with Naser were a nice reprieve."
"По крайней мере, фотографии с Незером были хорошей отдушиной."
# game/script/12.5D.prom-night-intro.rpy:437
translate ru chapter_12_5D_0b3f76cd:
# "We ended up looking like the blues brothers, standing side by side in fuck ugly suits."
"Вышло так, что мы выглядели как Братья Блюз, стоя бок о бок в чертовски уродливых костюмах."
# game/script/12.5D.prom-night-intro.rpy:441
translate ru chapter_12_5D_0e089e57:
# "Just as I was about to resign myself to premature blindness from the camera flash, my saviour arrives."
"Ровно в тот момент, когда я уже собирался смириться с преждевременной слепотой от вспышки фотоаппарата, появляется мой спаситель."
# game/script/12.5D.prom-night-intro.rpy:444
translate ru chapter_12_5D_834cbd0d:
# F "Oh, Anon, youre already here!"
F "О, Анон, ты уже здесь!"

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -1,691 +0,0 @@
# TODO: Translation updated at 2021-11-27 11:56
# game/script/14B.bad-ending.rpy:3
translate ru chapter_14B_c60f0b48:
# "After Fang broke up with me, everything just fell apart."
"После того, как Фэнг порвала со мной, всё полетело к чертям."
# game/script/14B.bad-ending.rpy:5
translate ru chapter_14B_5cd19738:
# "I couldnt be bothered with school anymore, instead shutting myself in my room and replaying old games."
"Я больше не парился по поводу школы, вместо этого я переигрывал старые игры, закрывшись в своей комнате."
# game/script/14B.bad-ending.rpy:7
translate ru chapter_14B_3e01c46d:
# "Naturally, I flunked out."
"Естественно, меня исключили."
# game/script/14B.bad-ending.rpy:10
translate ru chapter_14B_5c967f01:
# "With time on the lease running out, I had to make a decision soon{cps=*.1}...{/cps}"
"Поскольку срок аренды истекал, мне нужно было принять решение{cps=*.1}...{/cps}"
# game/script/14B.bad-ending.rpy:12
translate ru chapter_14B_e089effd:
# "College isnt an option, so my choices were{cps=*.1}...{/cps}"
"Колледж не вариант, так что на выбор у меня были{cps=*.1}...{/cps}"
# game/script/14B.bad-ending.rpy:14
translate ru chapter_14B_039fbd15:
# "Minimum wage job, military, or going homeless."
"Работа на минимальную ставку, армия, или бомжевание."
# game/script/14B.bad-ending.rpy:16
translate ru chapter_14B_fa9a78df:
# "Id rather not have stuck around town, and being homeless wasnt very appealing either."
"Я бы предпочёл не торчать в городе, да и быть бомжом мне тоже не хотелось."
# game/script/14B.bad-ending.rpy:18
translate ru chapter_14B_2cf2abad:
# "So that November I signed up for the Navy as a PACT Seaman."
"Так что в ноябре я записался в военно-морской флот в качестве матроса по контракту."
# game/script/14B.bad-ending.rpy:21
translate ru chapter_14B_8fd8ccf6:
# "The worst mistake of my life, and thats really saying something considering how I got here."
"Худшая ошибка в моей жизни, и это действительно о чём-то говорит, учитывая, как я сюда попал."
# game/script/14B.bad-ending.rpy:24
translate ru chapter_14B_73c41a97:
# "I was sold on the idea of picking a real job and getting training."
"Я был увлечён идеей получить реальную работу и пройти военное обучение."
# game/script/14B.bad-ending.rpy:26
translate ru chapter_14B_ba05ef90:
# "Instead I was at the mercy of brutal Boatswain's Mates."
"Но вместо этого я оказался во власти брутальных помощников боцмана."
# game/script/14B.bad-ending.rpy:28
translate ru chapter_14B_487b3ab5:
# "I have the pig and chicken shit tattooed on my feet to prove it."
"У меня на ноге вытатуированы свиное и куриное дерьмо в качестве доказательства."
# game/script/14B.bad-ending.rpy:30
translate ru chapter_14B_3207ccdf:
# "Or at least I did, until I sold my battlestation to get them removed."
"Или, по крайней мере, были вытатуированы, пока я не продал свою консоль, чтобы их свести."
# game/script/14B.bad-ending.rpy:33
translate ru chapter_14B_ece2ac61:
# "I never want to touch a paintbrush in my life again."
"Я больше никогда в жизни не хочу прикасаться к кисти."
# game/script/14B.bad-ending.rpy:35
translate ru chapter_14B_d74f78d6:
# "Though every day since Ive been eyeing rope{cps=*.1}...{/cps}"
"Ведь с тех пор я начал всё чаще присматриваться к верёвке{cps=*.1}...{/cps}"
# game/script/14B.bad-ending.rpy:38
translate ru chapter_14B_33519eb5:
# "For four years my life was suffering."
"В течение четырёх лет моя жизнь была сущим кошмаром."
# game/script/14B.bad-ending.rpy:40
translate ru chapter_14B_87139e40:
# "And now Im back here."
"И теперь я снова здесь."
# game/script/14B.bad-ending.rpy:42
translate ru chapter_14B_680417d3:
# "Plane ticket to anywhere."
"Билет на самолёт куда угодно."
# game/script/14B.bad-ending.rpy:44
translate ru chapter_14B_21b063ca:
# "And I picked Volcadera Bluff."
"И я выбрал Вулкальдеру."
# game/script/14B.bad-ending.rpy:47
translate ru chapter_14B_6792dede:
# "What the fuck was I thinking?"
"Чем я только думал?"
# game/script/14B.bad-ending.rpy:50
translate ru chapter_14B_5a38ef21:
# "There was a simple answer to that."
"На это был простой ответ."
# game/script/14B.bad-ending.rpy:52
translate ru chapter_14B_4217a49e:
# "I wasnt."
"Я не думал."
# game/script/14B.bad-ending.rpy:54
translate ru chapter_14B_c9962bee:
# "Just like I wasnt thinking on that beach."
"Точно так же, как я не думал на том пляже."
# game/script/14B.bad-ending.rpy:56
translate ru chapter_14B_8057e23f:
# "People dont change, after all."
"В конце концов, люди не меняются."
# game/script/14B.bad-ending.rpy:59
translate ru chapter_14B_b2032bd8:
# "I managed to get my old apartment in Skin Row back and its somehow even more of a shithole than it was four years ago."
"Мне удалось снять свою старую квартиру в Скин Роу, и каким-то образом она стала ещё большей дырой, чем четыре года назад."
# game/script/14B.bad-ending.rpy:61
translate ru chapter_14B_14fe0527:
# "Only good thing out of the Navy was the monthly check."
"Единственной хорошей вещью на флоте было месячное пособие."
# game/script/14B.bad-ending.rpy:63
translate ru chapter_14B_abe32551:
# "Fucking ladderwells. The steps finally got me in the end."
"Чёртовы корабельные лестницы. Даже с них я умудрился навернуться."
# game/script/14B.bad-ending.rpy:66
translate ru chapter_14B_0ba80b50:
# "Once I got my general discharge papers I vowed to never step foot on a ship again."
"Как только я получил документы об увольнении, я поклялся больше никогда не ступать на борт корабля."
# game/script/14B.bad-ending.rpy:73
translate ru chapter_14B_60fc45f3:
# "Instead, Ive locked myself away in this room."
"Вместо этого, я запер себя в этой комнате."
# game/script/14B.bad-ending.rpy:75
translate ru chapter_14B_20bcf897:
# "Just listlessly drifting through life."
"И начал вяло плыть по течению."
# game/script/14B.bad-ending.rpy:77
translate ru chapter_14B_bcd811a1:
# "Just like I always wanted."
"Как я всегда и хотел."
# game/script/14B.bad-ending.rpy:80
translate ru chapter_14B_2f8ad1bf:
# "The trash from all the deliveries has turned it into a small landfill."
"Мусор от всех доставок еды превратился в небольшую свалку."
# game/script/14B.bad-ending.rpy:82
translate ru chapter_14B_52813fb3:
# "Im out of smokes, Im out of liquor, my apartment smells like a shallow grave."
"У меня кончились сигареты, кончился алкоголь, моя квартира пахнет как свежая могила."
# game/script/14B.bad-ending.rpy:85
translate ru chapter_14B_1b0b49c5:
# "I really need to go out for once."
"Мне действительно нужно выйти на улицу."
# game/script/14B.bad-ending.rpy:88
translate ru chapter_14B_09622a0c:
# "I vaguely recall there being a pizza place nearby, some chain on the edge of Skin Row."
"Я смутно припоминаю, что поблизости была пиццерия, какая-то сетевуха на краю Скин Роу."
# game/script/14B.bad-ending.rpy:90
translate ru chapter_14B_c440a00d:
# "Pizza always helps. And its cheap."
"Пицца всегда хороший выбор. И это дёшево."
# game/script/14B.bad-ending.rpy:92
translate ru chapter_14B_f985e404:
# "And theres a smoke shop nearby."
"А поблизости есть табачный магазин."
# game/script/14B.bad-ending.rpy:94
translate ru chapter_14B_c287d9be:
# "With that plan settled I grab the jacket that I havent worn in weeks."
"Устаканив свой план, я хватаю куртку, которую не надевал уже несколько недель."
# game/script/14B.bad-ending.rpy:96
translate ru chapter_14B_72771df4:
# "I give it a quick smell check before putting it on and heading for the door."
"Я быстро проверяю её на запашок и направляюсь к двери."
# game/script/14B.bad-ending.rpy:100
translate ru chapter_14B_d3d02b19:
# "As I walk through the front of the building I feel the burning bright light of the setting sun searing my eyes."
"Проходя мимо передней части здания, я чувствую, как яркий свет заходящего солнца обжигает мои глаза."
# game/script/14B.bad-ending.rpy:104
translate ru chapter_14B_433cbe5f:
# A "Argh, fuck! Its like getting skullfucked by one of Stonys light bars!"
A "Аргх, блять! Это всё равно что быть трахнутым в глазницу одним из светящихся геймпадов Stony!"
# game/script/14B.bad-ending.rpy:107
translate ru chapter_14B_1a2df387:
# "After stumbling around like Helen Keller for a few moments, my eyes finally adjust to the sunlight and I start to make my way down the street."
"Побродив несколько минут как Хелен Келлер, мои глаза наконец-то привыкают к солнечному свету, и я начинаю продвигаться вниз по улице."
# game/script/14B.bad-ending.rpy:110
translate ru chapter_14B_3674984f:
# "Pizza time here I come."
"Пицца, я иду."
# game/script/14B.bad-ending.rpy:112
translate ru chapter_14B_f1638dc1:
# "{cps=*.1}...{/cps}"
"{cps=*.1}...{/cps}"
# game/script/14B.bad-ending.rpy:118
translate ru chapter_14B_22755598:
# "Its morose and gray out, clouds hang heavy and blots the sun out."
"На улице мрачно и серо, тяжёлые тучи нависают в небе, заслоняя солнце."
# game/script/14B.bad-ending.rpy:120
translate ru chapter_14B_04e13b15:
# "The homeless litter the street more than usual in this part of town."
"Бомжей здесь на порядок больше, нежели в других частях города."
# game/script/14B.bad-ending.rpy:122
translate ru chapter_14B_c17e9555:
# "Even outside the dingy pizza place I found."
"Они ютятся даже снаружи тусклой пиццерии, которую я нашёл."
# game/script/14B.bad-ending.rpy:129
translate ru chapter_14B_a2bd532c:
# "Theres only a few people inside the joint when I enter."
"Входя внутрь, я замечаю всего пару посетителей."
# game/script/14B.bad-ending.rpy:131
translate ru chapter_14B_6f94bac7:
# "The entire place could be described as slow."
"Всё это место можно описать как ‘тягучее’."
# game/script/14B.bad-ending.rpy:134
translate ru chapter_14B_6a5162f4:
# "A cashier leans on one arm over the counter, the customers pizza already looks cold on their plates, an ambient track plays at a molasses pace."
"Кассир опирается одной рукой на стойку. Пицца, лежащая на тарелках клиентов, выглядит холодной, а фоновая музыка играет в темпе патоки."
# game/script/14B.bad-ending.rpy:136
translate ru chapter_14B_29a9f16d:
# "Time itself seems to be dilating in here."
"Само время в этом месте будто растягивается."
# game/script/14B.bad-ending.rpy:139
translate ru chapter_14B_ca1cbb13:
# "I order two slices to go and wait by the counter for the cashier to meander to the back for a new stack of boxes."
"Я заказываю два кусочка на вынос и жду у стойки, пока кассир отходит за заказом."
# game/script/14B.bad-ending.rpy:142
translate ru chapter_14B_421dd8a8:
# "Out of the corner of my eye I notice that the place has a small stage tucked into the back."
"Краем глаза я замечаю, что в задней части заведения есть небольшая сцена."
# game/script/14B.bad-ending.rpy:144
translate ru chapter_14B_4105a001:
# "Oh, so they have live music?"
"Оу, так у них есть живая музыка?"
# game/script/14B.bad-ending.rpy:147
translate ru chapter_14B_b2bba7f9:
# "The current song ends and they shift amongst themselves to get the next one ready."
"Текущая песня заканчивается и группа немного перестраивается, чтобы подготовиться к следующей."
# game/script/14B.bad-ending.rpy:153
translate ru chapter_14B_5538be5b:
# "The drummer taps his drumsticks together and starts a basic percussion line."
"Барабанщик ударяет своими палочками и начинает выстукивать стандартную ударную партию."
# game/script/14B.bad-ending.rpy:156
translate ru chapter_14B_d31d7f09:
# "After a few beats the dreary singing begins and I feel my heart drop."
"После небольшой проигровки вступает тоскливый вокал, и я чувствую, как замирает моё сердце."
# game/script/14B.bad-ending.rpy:158
translate ru chapter_14B_2254c3a5:
# "No matter how much of my memory I repress, I could never forget that voice."
"Независимо от того, как сильно я подавляю свои воспоминания, я никогда не смогу забыть этот голос."
# game/script/14B.bad-ending.rpy:163
translate ru chapter_14B_b9638b94:
# "I throw an inconspicuous glance across the room and confirm my suspicions."
"Я бросаю незаметный взгляд через комнату и подтверждаю свои догадки."
# game/script/14B.bad-ending.rpy:171
translate ru chapter_14B_a6cd996f:
# "I can barely recognize Fang."
с трудом узнаю Фэнг."
# game/script/14B.bad-ending.rpy:174
translate ru chapter_14B_d01ab180:
# "A part of me denies that the person up on stage could have been her."
"Часть меня отрицает, что на сцене была действительно она."
# game/script/14B.bad-ending.rpy:176
translate ru chapter_14B_575f4e0c:
# "My more rational side however clarifies that its Fang up there, singing a song I know by heart."
"Однако моя более рациональная сторона понимает, что это Фэнг... стоящая там и поющая песню, которую я знаю наизусть."
# game/script/14B.bad-ending.rpy:179
translate ru chapter_14B_bbed1944:
# "The years have not been kind to her."
"Годы её не пожалели."
# game/script/14B.bad-ending.rpy:181
translate ru chapter_14B_2c09617d:
# "Her long gray hair is now totally shaved off and she has tattoos down both of her arms."
"Длинные серые волосы теперь полностью сбриты, а на обеих руках красуются татуировки. "
# game/script/14B.bad-ending.rpy:183
translate ru chapter_14B_902b5234:
# "The thick black eyeliner makes her once bright amber eyes seem dull."
"Густая чёрная тушь делает некогда яркие янтарные глаза тусклыми и безжизненными."
# game/script/14B.bad-ending.rpy:185
translate ru chapter_14B_7c18ebf2:
# "And the expression on her face is one of absolute misery."
"А её лицо выражает абсолютное отчаяние."
# game/script/14B.bad-ending.rpy:188
translate ru chapter_14B_9a58bc2d:
# "The other two dont look any better off either."
"Два других участника группы выглядят не лучше."
# game/script/14B.bad-ending.rpy:191
translate ru chapter_14B_3ddd2936:
# "I dont think Fangs seen me yet."
"Я не думаю, что Фэнг меня замечает."
# game/script/14B.bad-ending.rpy:193
translate ru chapter_14B_d3d5c5ea:
# "Or doesnt recognize me."
"Или же просто не признаёт."
# game/script/14B.bad-ending.rpy:195
translate ru chapter_14B_00973adf:
# "Were a few years older now, a few years wiser."
"Теперь мы на несколько лет старше, на несколько лет мудрее."
# game/script/14B.bad-ending.rpy:197
translate ru chapter_14B_08cbc4e4:
# "Maybe just a bit worse off."
"И на несколько лет испорченнее."
# game/script/14B.bad-ending.rpy:200
translate ru chapter_14B_05d8ed65:
# "The cashier returns with some cardboard boxes and packs my order into a neatly-folded package."
"Кассир возвращается с несколькими картонными коробками и упаковывает мой заказ в аккуратно сложенный пакет."
# game/script/14B.bad-ending.rpy:202
translate ru chapter_14B_d68d1224:
# "I stay and wait. Watching her."
"Я остаюсь и жду. Наблюдаю за ней."
# game/script/14B.bad-ending.rpy:204
translate ru chapter_14B_50f12e2a:
# "Hoping for her to look at me."
"Надеясь, что она посмотрит на меня."
# game/script/14B.bad-ending.rpy:206
translate ru chapter_14B_9469bdee:
# "Recognize me."
"Узнает меня."
# game/script/14B.bad-ending.rpy:208
translate ru chapter_14B_12486ab5:
# "Notice that Im the only one here who cares enough to watch her play."
"Заметит, что я единственный здесь, кому не всё равно на её выступление."
# game/script/14B.bad-ending.rpy:211
translate ru chapter_14B_fc81ed70:
# "Finally, her eyes cast over the audience, looking over them."
"Наконец, она поднимает глаза и оглядывает толпу."
# game/script/14B.bad-ending.rpy:213
translate ru chapter_14B_335887b7:
# "Looking over me."
"Оглядывает меня."
# game/script/14B.bad-ending.rpy:216
translate ru chapter_14B_9a74bad4:
# "Her gaze just passes me by, even though Im the only one looking."
"Её взгляд просто пролетает мимо, даже учитывая то, что я единственный, кто смотрит на сцену."
# game/script/14B.bad-ending.rpy:218
translate ru chapter_14B_cda63058:
# "She doesnt recognize me."
"Она меня не узнаёт."
# game/script/14B.bad-ending.rpy:222
translate ru chapter_14B_bb793326:
# "Its sobering."
"Это отрезвляет."
# game/script/14B.bad-ending.rpy:228
translate ru chapter_14B_77b4d9f2:
# "I guess that was it, it was fun pretending this might go somewhere."
"Думаю, на этом всё. Было забавно притвориться, что это может к чему-то привести."
# game/script/14B.bad-ending.rpy:231
translate ru chapter_14B_20b59e7b:
# "That she would recognize me, drop her instrument and come to my arms, and we start dating again."
"Что она узнает меня, бросит свой инструмент, кинется ко мне в объятия, и мы снова будем вместе."
# game/script/14B.bad-ending.rpy:233
translate ru chapter_14B_77a3a734:
# "We forgive ourselves, and we start over."
"Мы простим друг друга и начнём всё с чистого листа."
# game/script/14B.bad-ending.rpy:235
translate ru chapter_14B_53d09f9a:
# "I let out a small sigh."
"Я тихо вздыхаю."
# game/script/14B.bad-ending.rpy:238
translate ru chapter_14B_3b5aca4a:
# "I hesitate with the box in my hand."
"Колеблюсь, держа коробку в руках."
# game/script/14B.bad-ending.rpy:241
translate ru chapter_14B_0b15e820:
# "Fang is right there."
"Фэнг сейчас там."
# game/script/14B.bad-ending.rpy:244
translate ru chapter_14B_0c69721c:
# "I could take everything back. Everything that went wrong all because of that fight."
"Я мог бы всё исправить. Вернуть всё то, чем я так дорожил до той ссоры."
# game/script/14B.bad-ending.rpy:246
translate ru chapter_14B_8007f72a:
# "If I try talking to her, she might forgive me."
"Если я попытаюсь поговорить с ней, она, возможно, простит меня."
# game/script/14B.bad-ending.rpy:248
translate ru chapter_14B_36ce9911:
# "Give us both a fresh start."
"Даст нам обоим шанс начать всё сначала."
# game/script/14B.bad-ending.rpy:251
translate ru chapter_14B_cf9ea4d8:
# "Things could go back to the way they were, back before{cps=*.1}...{/cps}"
"Всё может вернуться на круги своя, как и тогда{cps=*.1}...{/cps}"
# game/script/14B.bad-ending.rpy:253
translate ru chapter_14B_5a48123e:
# "Before{cps=*.1}...{/cps}"
"Когда{cps=*.1}...{/cps}"
# game/script/14B.bad-ending.rpy:256
translate ru chapter_14B_804ae115:
# F "{alpha=0.75}{i}{cps=*.4}\"Trish was right about you.\"{/cps}{/i}{/alpha}"
F "{alpha=0.75}{i}{cps=*.4}\"Триш была права насчёт тебя.\"{/cps}{/i}{/alpha}"
# game/script/14B.bad-ending.rpy:260
translate ru chapter_14B_de93953b:
# "I{cps=*.1}...{/cps}"
"Мне{cps=*.1}...{/cps}"
# game/script/14B.bad-ending.rpy:263
translate ru chapter_14B_765acfcd:
# "I really should go get those smokes."
"Мне действительно нужно сходить за сигаретами."
# game/script/14B.bad-ending.rpy:266
translate ru chapter_14B_7a6f01eb:
# "I take one last look of Fang, to further cement in my mind Im making the right choice."
"Я бросаю последний взгляд на Фэнг, чтобы ещё раз удостовериться в том, что делаю правильный выбор."
# game/script/14B.bad-ending.rpy:272
translate ru chapter_14B_b6ecc854:
# "I couldnt save her. Why would I save her? In her infinite talent cant she see shes a dump?"
"Я не могу её спасти. Зачем мне её спасать? Неужели при всём своём таланте она не видит, что стала отбросом?"
# game/script/14B.bad-ending.rpy:275
translate ru chapter_14B_ceaac5ba:
# "I saw it, shes smart, Im a dope. Yet why does she do that to herself?"
"Уж я-то знаю. Она умная, а я тупица. И всё же, почему она так с собой поступает?"
# game/script/14B.bad-ending.rpy:281
translate ru chapter_14B_cda5cd21:
# "The bell on the door jingles its farewell, and I open the box to eat the first slice."
"Колокольчик на двери прощально звенит. Я открываю коробку, чтобы съесть первый кусочек."
# game/script/14B.bad-ending.rpy:283
translate ru chapter_14B_984a71de:
# "As the taste of cardboard fills my mouth I try to erase the last few minutes from my memory."
"Когда вкус картона наполняет мой рот, я пытаюсь стереть последние несколько минут из своей памяти."
# game/script/14B.bad-ending.rpy:286
translate ru chapter_14B_15f7da10:
# "But I know it wont ever leave."
"Но я знаю, что они меня не покинут."
# game/script/14B.bad-ending.rpy:288
translate ru chapter_14B_2ab5e0c2:
# "None of my memories will."
"Ни одно из моих воспоминаний."
# game/script/14B.bad-ending.rpy:291
translate ru chapter_14B_59315ba4:
# "I can just picture Fang, looking like a junkie like she does now in that pizzeria, playing to an audience of nobody: judging me and how Im living from now on."
"Я могу лишь представить Фэнг, похожую на наркоманку и играющую перед полупустым залом. Осуждающую меня и мой нынешний образ жизни."
# game/script/14B.bad-ending.rpy:293
translate ru chapter_14B_a814e4e2:
# "And Ill say \"Yes Fang. I live on a pension alone in my apartment, playing games and watching movies and sleeping.\""
"Я бы сказал: \"Да, Фэнг. Я живу один на пособие в своей старой квартире, играю в видеоигры, смотрю кино и сплю\"."
# game/script/14B.bad-ending.rpy:295
translate ru chapter_14B_6a9e2ed3:
# "\"Its all I could ever want because I never wanted much in the first place.\""
"\"Это всё, чего я когда-либо желал, потому что большего я никогда и не хотел\"."
# game/script/14B.bad-ending.rpy:298
translate ru chapter_14B_2da2cd34:
# "And shell probably scream at me, vent her frustrations on me, call me selfish."
"Она наверняка заорёт на меня, вымещая своё разочарование и называя меня эгоистом."
# game/script/14B.bad-ending.rpy:300
translate ru chapter_14B_2cd54830:
# "And Ill just say \"Goodbye, Fang.\""
"А я просто скажу: \"Прощай, Фэнг\"."
# game/script/14B.bad-ending.rpy:303
translate ru chapter_14B_c9527156:
# "It couldve been a painful way of separating again{cps=*.1}...{/cps}"
"Это был бы болезненный способ снова расстаться{cps=*.1}...{/cps}"
# game/script/14B.bad-ending.rpy:305
translate ru chapter_14B_a6110cdb:
# "{cps=*.1}...{/cps}after some possibly pleasant time playing catch-up{cps=*.1}...{/cps}"
"{cps=*.1}...{/cps}после, возможно, приятного времяпрепровождения за рассказами о жизни{cps=*.1}...{/cps}"
# game/script/14B.bad-ending.rpy:307
translate ru chapter_14B_9941ff37:
# "{cps=*.1}...{/cps}but the thought of coming back to my apartment alone with my pizza, watching a movie on my tv, undisturbed, with no judgement for my appearance or the place I live, it fills me with relief."
"{cps=*.1}...{/cps}но мысль о том, чтобы вернуться в свою квартиру наедине с пиццей, спокойно посмотреть фильм, без осуждения моей внешности или места, где я живу даёт облегчение."
# game/script/14B.bad-ending.rpy:310
translate ru chapter_14B_3ce579e5:
# "Its all I ever wanted."
"Это всё, чего я когда-либо хотел."
# game/script/14B.bad-ending.rpy:313
translate ru chapter_14B_96120365:
# "Its all Ill ever need."
"Это всё, что мне было нужно."
# game/script/14B.bad-ending.rpy:316
translate ru chapter_14B_67816457:
# "Goodbye, Fang. It was nice seeing you again, I suppose."
"Прощай, Фэнг. Было приятно снова тебя увидеть, наверное."
# game/script/14B.bad-ending.rpy:318
translate ru chapter_14B_2589a1be:
# "Because I havent changed."
"Потому что я не изменился."
# game/script/14B.bad-ending.rpy:324
translate ru chapter_14B_0adcd937:
# "People never change."
"Люди никогда не меняются."

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -1,919 +0,0 @@
# TODO: Translation updated at 2021-11-27 11:56
# game/script/x1-chicxulub-gutterlane.rpy:10
translate ru chapter_x1_15b4bb09:
# "Its a cool autumns evening and for some reason Im squeezed in a car against Moe and Naser."
"На дворе прохладный осенний вечер, и по какой-то причине я оказался втиснут в машину вместе с Мо и Незером."
# game/script/x1-chicxulub-gutterlane.rpy:12
translate ru chapter_x1_5aa090dc:
# "Fangs dad was driving, and the passenger seat was taken up by a tote bag holding the family's ancient bowling balls."
"За рулём сидит отец Фэнг, а на пассажирском сиденье лежит большая сумка со старыми именными шарами для боулинга."
# game/script/x1-chicxulub-gutterlane.rpy:15
translate ru chapter_x1_68be7fe5:
# "Every time he looked in the rear view mirror I swear his gaze lingered on me for just a second before returning to the road."
"Каждый раз, когда он смотрел в зеркало заднего вида, я клянусь, что его взгляд на секунду задерживался на мне, прежде чем вернуться на дорогу."
# game/script/x1-chicxulub-gutterlane.rpy:17
translate ru chapter_x1_356f0a45:
# "The only consolation is that if I dont live to see the next day, it wouldnt be because he didnt have his priorities straight while on the road."
"Единственным утешением было то, что если я не доживу до завтрашнего дня это будет не потому, что он не расставил правильных приоритетов, находясь за рулём."
# game/script/x1-chicxulub-gutterlane.rpy:20
translate ru chapter_x1_bfa08733:
# "The drive couldnt have lasted for more than fifteen minutes, but it felt like a good couple of hours."
"Поездка длилась не больше пятнадцати минут, но ощущалась как добрая пара часов."
# game/script/x1-chicxulub-gutterlane.rpy:28
translate ru chapter_x1_3e35c1eb:
# "When we finally pulled into the parking lot, I step out to stretch my legs while Moe and Naser continued to catch up."
"Когда мы, наконец, заехали на стоянку, я вышел, чтобы размять ноги. Мо и Незер начали вылезать из машины вслед за мной."
# game/script/x1-chicxulub-gutterlane.rpy:40
translate ru chapter_x1_1bfa6942:
# "Naser was having a blast listening about how Fang and VVURM DRAMA knocked it out of the park at Moes."
"Незер был в восторге, услышав как Фэнг и VVURM DRAMA отожгли на концерте в пиццерии."
# game/script/x1-chicxulub-gutterlane.rpy:42
translate ru chapter_x1_346e9fc6:
# "Moe was even wearing the apron Trish sold him to our little gathering."
"Мо даже надел тот разрисованный фартук, который ему продала Триш."
# game/script/x1-chicxulub-gutterlane.rpy:46
translate ru chapter_x1_4ce5a8a2:
# A "Uhh{cps=*.1}...{/cps} Moe, why are you wearing that outside, miles away from the restaurant kitchen?"
A "Эм{cps=*.1}...{/cps} Мо, почему ты носишь его на улице, за множество километров от кухни своего ресторана?"
# game/script/x1-chicxulub-gutterlane.rpy:58
translate ru chapter_x1_647e39df:
# Moe "Itsa part o ma look, if I aints wearin an apron I jus dont feel right."
Moe "Эта часть моего вида, если я не нашу фартук я просто сам не свой."
# game/script/x1-chicxulub-gutterlane.rpy:70
translate ru chapter_x1_60721d1e:
# FD "Well, folks, were here."
FD "Что ж, народ, мы на месте."
# game/script/x1-chicxulub-gutterlane.rpy:74
translate ru chapter_x1_2ab1b71a:
# FD "Black Hole Bowling."
FD "Black Hole Bowling."
# game/script/x1-chicxulub-gutterlane.rpy:77
translate ru chapter_x1_92c79497:
# Moe "Its been a while, why ole Rip n me used ta come ere erry weekend when we was your age."
Moe "Прашло много лет с тех пор, как старый Рип и я приезжали сюта на выхадные, когда мы были вашего возраста."
# game/script/x1-chicxulub-gutterlane.rpy:79
translate ru chapter_x1_6b2fc5ed:
# FD "And with my weekend off I figured Id take the next generation for a game or two."
FD "И в этот раз я решил, что пора взять следующее поколение сыграть с нами пару геймов."
# game/script/x1-chicxulub-gutterlane.rpy:91
translate ru chapter_x1_c562923d:
# Nas "Surprised you brought Anon along, Dad."
Nas "Я удивлён, что ты решил взять Анона, пап."
# game/script/x1-chicxulub-gutterlane.rpy:93
translate ru chapter_x1_cea4d96f:
# Nas "Thats pretty unlike you."
Nas "Это очень на тебя не похоже."
# game/script/x1-chicxulub-gutterlane.rpy:96
translate ru chapter_x1_a989f974:
# FD "It {i}was{/i} just going to be the three of us{cps=*.1}...{/cps}"
FD "Мы {i}должны{/i} были поехать втроём{cps=*.1}...{/cps}"
# game/script/x1-chicxulub-gutterlane.rpy:98
translate ru chapter_x1_2d18f317:
# FD "But the {i}missus{/i} thought it would be a {i}grand{/i} idea for him to come along."
FD "Но {i}твоя мама{/i} решила, что это будет {i}великолепной{/i} идеей, если он поедет с нами."
# game/script/x1-chicxulub-gutterlane.rpy:101
translate ru chapter_x1_86acb3c9:
# "Moe made an odd hand motion with his tiny limbs."
"Мо сделал странное движение своими маленькими ручками."
# game/script/x1-chicxulub-gutterlane.rpy:103
translate ru chapter_x1_02db6f53:
# "It only made sense when he added a whip crack sound with it."
"Оно приобрело смысл только тогда, когда он добавил к нему звук удара хлыстом."
# game/script/x1-chicxulub-gutterlane.rpy:106
translate ru chapter_x1_748eb875:
# FD "Quiet you. Id have your ass in bars before youd even know it."
FD "Молчи. А то я засуну твою задницу за решётку быстрее, чем ты успеешь это осознать."
# game/script/x1-chicxulub-gutterlane.rpy:108
translate ru chapter_x1_02aeb55a:
# Moe "We both knows ya wont. Cmon kids, ole Moe needs the extra hands to git on his lucky shoes."
Moe "Мы оба знаем, что этого не произойдёт. Давайте, шпана, старому Мо нужна помощь, чтоб достать его щастливые туфли."
# game/script/x1-chicxulub-gutterlane.rpy:125
translate ru chapter_x1_7ad413fc:
# "I ended up having to carry the tote bag of bowling balls inside."
"В итоге я оказался тем, на кого скинули заботу о сумке с шарами."
# game/script/x1-chicxulub-gutterlane.rpy:128
translate ru chapter_x1_934ae16b:
# Nas "Youre not going to make a {i}cripple{/i} carry all those, right?"
Nas "Ты же не будешь заставлять {i}калеку{/i} нести всё это, верно?"
# game/script/x1-chicxulub-gutterlane.rpy:139
translate ru chapter_x1_2850c9e2:
# "Struggling to not fall over or snap in half like a skin-colored twig, I lugged the bag over."
"Изо всех сил стараясь не упасть и не переломиться пополам, как обтянутая кожей ветка, я потащил сумку за собой."
# game/script/x1-chicxulub-gutterlane.rpy:153
translate ru chapter_x1_4b4d9b74:
# "After we got a lane and I placed the balls on the rack, Fangs father and I sat in the benches while Naser and Moe went to get some snacks."
"После того, как дорожка была забронирована, и я положил шары на стойку, мы с отцом Фэнг сели на диван, а Незер и Мо пошли за закусками."
# game/script/x1-chicxulub-gutterlane.rpy:155
translate ru chapter_x1_d1f4c65b:
# "I slouch back in my seat and rest my eyes a bit."
"Я откидываюсь назад и даю своим глазам немного отдохнуть."
# game/script/x1-chicxulub-gutterlane.rpy:158
translate ru chapter_x1_f05b8d2e:
# "Man, those bowling balls were heavy."
"Блин, эти шары были чертовски тяжёлыми."
# game/script/x1-chicxulub-gutterlane.rpy:160
translate ru chapter_x1_6bac2871:
# "We parked pretty far away, too, so I had to carry them a good quarter mile or so."
"Кроме того, мы припарковались довольно далеко, так что мне пришлось тащить их добрые пятьсот метров или около того."
# game/script/x1-chicxulub-gutterlane.rpy:162
translate ru chapter_x1_851ae29b:
# "At least the benches here are clean."
"По крайней мере, диваны здесь чистые."
# game/script/x1-chicxulub-gutterlane.rpy:174
translate ru chapter_x1_1c087271:
# "Sitting here with{cps=*.1}...{/cps}"
"Сижу здесь с{cps=*.1}...{/cps}"
# game/script/x1-chicxulub-gutterlane.rpy:176
translate ru chapter_x1_9f29bdb0:
# "Fangs father{cps=*.1}...{/cps}"
"Отцом Фэнг{cps=*.1}...{/cps}"
# game/script/x1-chicxulub-gutterlane.rpy:179
translate ru chapter_x1_293a3377:
# "Alone."
"Наедине."
# game/script/x1-chicxulub-gutterlane.rpy:182
translate ru chapter_x1_7dbeccda:
# "My eyes widen as Mister Aaron and I face each other."
"Мои глаза расширяются, когда я ловлю на себе взгляд мистера Аарона."
# game/script/x1-chicxulub-gutterlane.rpy:185
translate ru chapter_x1_4bad3546:
# "I feel my blood turn to ice as a look of malevolent glee spreads across his face."
"На его лице появляется выражение зловещего восторга, и я чувствую, как моя кровь леденеет."
# game/script/x1-chicxulub-gutterlane.rpy:187
translate ru chapter_x1_6c929dac:
# FD "So, Anon{cps=*.1}...{/cps}"
FD "Итак, Анон{cps=*.1}...{/cps}"
# game/script/x1-chicxulub-gutterlane.rpy:189
translate ru chapter_x1_4401fa90:
# FD "We havent had a real heart-to-heart yet, have we?"
FD "У нас с тобой ещё не было реального тет-а-тет, не так ли?"
# game/script/x1-chicxulub-gutterlane.rpy:191
translate ru chapter_x1_2de61c8f:
# A "Haha, really? Weve spoken before back at your house, havent we sir?"
A "Хаха, правда? Мы ведь ранее говорили в вашем доме... разве нет, сэр?"
# game/script/x1-chicxulub-gutterlane.rpy:193
translate ru chapter_x1_fe2c638a:
# FD "True, but here we can really have some good ol Man Talk, you know?"
FD "Правда. Но здесь мы сможем поговорить по-настоящему. По-мужски, понимаешь?"
# game/script/x1-chicxulub-gutterlane.rpy:195
translate ru chapter_x1_3bb56026:
# A "I-I see."
A "Д-да, понимаю."
# game/script/x1-chicxulub-gutterlane.rpy:198
translate ru chapter_x1_3a635f6c:
# "Fangs Mother isnt here, and Moes probably dropped his order twice already."
"Мамы Фэнг здесь нет, а Мо, наверное, уже дважды уронил свой заказ."
# game/script/x1-chicxulub-gutterlane.rpy:200
translate ru chapter_x1_835b2532:
# "Please come back soon."
"Пожалуйста, возвращайтесь скорее."
# game/script/x1-chicxulub-gutterlane.rpy:202
translate ru chapter_x1_d5b8c0ce:
# FD "You been getting along well with everyone so far, huh?"
FD "Ты вроде как неплохо со всеми спелся, хм?"
# game/script/x1-chicxulub-gutterlane.rpy:204
translate ru chapter_x1_b4bfda27:
# FD "Dear Lucy, Naser. Even my old buddy Moe."
FD "Моя дочурка Люси. Незер. Даже мой старый приятель Мо."
# game/script/x1-chicxulub-gutterlane.rpy:206
translate ru chapter_x1_0fa6d035:
# FD "Hear youre a fast learner in his kitchen."
FD "Слышал, ты быстро учишься, работая на его кухне."
# game/script/x1-chicxulub-gutterlane.rpy:208
translate ru chapter_x1_9425a729:
# "I swallow hard as I manage a nod."
с трудом сглатываю, когда мне, наконец, удаётся кивнуть."
# game/script/x1-chicxulub-gutterlane.rpy:210
translate ru chapter_x1_cd6e961e:
# "The inside of my mouth felt like the center of the Sahara while my shirt was practically glued to my back from my sweat."
"Полость моего рта ощущается как центр Сахары, в то время как футболка практически приклеилась к спине из-за пота."
# game/script/x1-chicxulub-gutterlane.rpy:213
translate ru chapter_x1_c9563e00:
# FD "You know I do actually know a bit about humans, I do."
FD "Знаешь, я ведь действительно неплохо разбираюсь в людях, без шуток."
# game/script/x1-chicxulub-gutterlane.rpy:215
translate ru chapter_x1_371a9d07:
# FD "In my line of work you need to deal with all types, you know."
FD "В моей работе приходится иметь дело со всеми видами разумных существ."
# game/script/x1-chicxulub-gutterlane.rpy:217
translate ru chapter_x1_1b0d3a30:
# FD "I read this {cps=*.4}{i}reeeeaaaal{/i}{/cps} interesting thing the other day."
FD "Я прочитал одну {cps=*.4}{i}оооооочень{/i}{/cps} интересную статью на днях."
# game/script/x1-chicxulub-gutterlane.rpy:220
translate ru chapter_x1_5ac2b786:
# FD "Apparently, dinosaurs and humans have a different amount of bones."
FD "Как оказалось, динозавры и люди имеют разное количество костей в своём теле."
# game/script/x1-chicxulub-gutterlane.rpy:222
translate ru chapter_x1_30e2c16e:
# FD "Makes sense when you think about it, but I guess it never occurred to me."
FD "Имеет смысл, если вдуматься. Но, полагаю, это никогда не приходило мне в голову."
# game/script/x1-chicxulub-gutterlane.rpy:224
translate ru chapter_x1_5c271c45:
# A "Uh, y-y-yeah. It k-k-kinda does, doesnt it?"
A "Эм, д-д-да. Ч-ч-что-то такое в этом есть, не так ли?"
# game/script/x1-chicxulub-gutterlane.rpy:226
translate ru chapter_x1_3a6e3fb9:
# FD "Anyways, the article goes real in-depth about it."
FD "В любом случае, статья очень сильно углубляется в эту тему."
# game/script/x1-chicxulub-gutterlane.rpy:228
translate ru chapter_x1_5ef8f7e9:
# FD "Do you know the minimum number of bones a human needs to survive?"
FD "Ты знаешь, какое минимальное количество костей нужно человеку, чтобы выжить?"
# game/script/x1-chicxulub-gutterlane.rpy:231
translate ru chapter_x1_167a21b7:
# FD "I do. Real nifty piece of information, right?"
FD "Я знаю. Действительно полезная информация, верно?"
# game/script/x1-chicxulub-gutterlane.rpy:234
translate ru chapter_x1_5340335c:
# A "Ye-yeah, pretty cool!"
A "Д-да, это довольно круто!"
# game/script/x1-chicxulub-gutterlane.rpy:237
translate ru chapter_x1_31d42d84:
# "He holds up a hand and points to his wrist."
"Он поднимает руку и указывает на своё запястье."
# game/script/x1-chicxulub-gutterlane.rpy:239
translate ru chapter_x1_b4e20638:
# FD "So apparently, absolutely none of these are vital to-"
FD "Как оказывается, ни одна из этих костяшек не является жизненно-"
# game/script/x1-chicxulub-gutterlane.rpy:247
translate ru chapter_x1_6a4b2c48:
# Nas "Here you go Anon."
Nas "Вот, держи, Анон."
# game/script/x1-chicxulub-gutterlane.rpy:249
translate ru chapter_x1_a2bde974:
# "Naser drops a pair of old shoes into my lap."
"Незер бросает пару старых туфель мне на колени."
# game/script/x1-chicxulub-gutterlane.rpy:252
translate ru chapter_x1_3a8d0580:
# Nas "I asked for caveman size, but this was all they had, sorry."
Nas "Я попросил неандертальский размер, но это всё, что у них было. Прости."
# game/script/x1-chicxulub-gutterlane.rpy:254
translate ru chapter_x1_ae5ff076:
# "Thank you Naser, thank you! If these werent rentals Id enshrine them in my home and pay them respect every day for the rest of my life."
"Спасибо тебе, Незер, спасибо! Если бы они не были арендованными, я бы забрал их к себе домой и молился им каждый божий день до конца своей жизни."
# game/script/x1-chicxulub-gutterlane.rpy:257
translate ru chapter_x1_a9e22504:
# Nas "Whatre you guys up to?"
Nas "Чем вы тут занимаетесь?"
# game/script/x1-chicxulub-gutterlane.rpy:265
translate ru chapter_x1_7515da79:
# Moe "Terrorizin the poor kid, I bet."
Moe "Готов паспорить, Рипли занимается терроризированием бедного парня."
# game/script/x1-chicxulub-gutterlane.rpy:267
translate ru chapter_x1_392e4a9b:
# "Moe sets a tray of fountain drinks and snack foods on the table with his grabby claw hands."
"Своими цепкими когтистыми ручками Мо ставит на стол поднос с кучей напитков и закусок."
# game/script/x1-chicxulub-gutterlane.rpy:269
translate ru chapter_x1_03c87385:
# Moe "Ya know, Rip, jus cause yer in-law made ya piss yer britches dont means ya gots ta do the same ta the kid."
Moe "Знаешь, Рип, проста потому что твой зять заставил тепя промочить штанишки не значит, что ты должен делать то же самое с пацаном."
# game/script/x1-chicxulub-gutterlane.rpy:272
translate ru chapter_x1_f1de91f4:
# FD "No clue what youre talking about."
FD "Без понятия, о чём ты."
# game/script/x1-chicxulub-gutterlane.rpy:274
translate ru chapter_x1_18e384ae:
# Moe "Sure, Rip, sure."
Moe "Канечно, Рип, канечно."
# game/script/x1-chicxulub-gutterlane.rpy:277
translate ru chapter_x1_8326e427:
# FD "Lets just play already."
FD "Давайте уже просто сыграем."
# game/script/x1-chicxulub-gutterlane.rpy:280
translate ru chapter_x1_20fa0756:
# "Eager to escape his clutches I bolted for the console and started entering our names."
"Стремясь вырваться из его лап, я бросился к консоли и начал вводить наши имена."
# game/script/x1-chicxulub-gutterlane.rpy:294
translate ru chapter_x1_1a2e802d:
# "Fangs dad was up first, and for some reason his solid flesh-tone ball seemed a lot newer than the others."
"Отец Фэнг встал первым, и по какой-то причине его шар телесного цвета казался намного новее остальных."
# game/script/x1-chicxulub-gutterlane.rpy:304
translate ru chapter_x1_b732be85:
# "He made a show of inserting his clawed fingers into each of the holes while making sure I had a real good angle."
"Он демонстративно вставил свои когтистые пальцы в каждое из отверстий, убедившись, чтобы я не пропустил ни одного движения."
# game/script/x1-chicxulub-gutterlane.rpy:306
translate ru chapter_x1_b3f25c73:
# "He even oriented the ball so that the holes lined up into a little screaming face."
"Он даже сориентировал шар таким образом, чтобы отверстия выстроились в маленькое кричащее лицо."
# game/script/x1-chicxulub-gutterlane.rpy:321
translate ru chapter_x1_f2d34fab:
# Nas "Wow pops, another strike!"
Nas "Вау, бать, очередной страйк!"
# game/script/x1-chicxulub-gutterlane.rpy:323
translate ru chapter_x1_08dcc613:
# FD "Sall in the form, Naser."
FD "Всё дело в формах, Незер."
# game/script/x1-chicxulub-gutterlane.rpy:326
translate ru chapter_x1_4f877cde:
# FD "If ya picture the pins as something you {i}really{/i} despise{cps=*.1}...{/cps}"
FD "Если ты представишь кегли как нечто, что ты {i}действительно{/i} презираешь{cps=*.1}...{/cps}"
# game/script/x1-chicxulub-gutterlane.rpy:328
translate ru chapter_x1_da5c9676:
# "His eyes linger on me for a moment."
"Его глаза на мгновение задерживаются на мне."
# game/script/x1-chicxulub-gutterlane.rpy:331
translate ru chapter_x1_7d842a5a:
# FD "You can put some real force into it and {w=.2}{nw}"
FD "Ты сможешь вложить в бросок всю свою силу и... {w=.2}{nw}"
# game/script/x1-chicxulub-gutterlane.rpy:334
translate ru chapter_x1_7a1a9fb0:
# extend "{i}BAM{/i}."
extend "{i}БАМ{/i}."
# game/script/x1-chicxulub-gutterlane.rpy:337
translate ru chapter_x1_b95eb501:
# "I think I just made bam in my pants."
"Думаю, я только что сделал ‘бам’ себе в штаны."
# game/script/x1-chicxulub-gutterlane.rpy:340
translate ru chapter_x1_8891ec05:
# Moe "Sheesh Rip. Give it a break for a bit."
Moe "Хоспади, Рип. Дай пацану немного пространства."
# game/script/x1-chicxulub-gutterlane.rpy:342
translate ru chapter_x1_713124cc:
# "Yes. Maybe two bits even."
"Да. Буквально чуточку."
# game/script/x1-chicxulub-gutterlane.rpy:352
translate ru chapter_x1_68710f2d:
# Moe "Alrights Anon, yer up."
Moe "Лады, Анон, ты следующий."
# game/script/x1-chicxulub-gutterlane.rpy:354
translate ru chapter_x1_530200e7:
# "I nod and get up from my seat."
"Я киваю и встаю с дивана."
# game/script/x1-chicxulub-gutterlane.rpy:366
translate ru chapter_x1_35eb41c6:
# "The ball Ive got is borrowed from the bowling lane, its logo making creative use of the finger holes."
"Шар, который я держу в руках, является собственностью клуба. Его логотип выгравирован вокруг дырок для пальцев."
# game/script/x1-chicxulub-gutterlane.rpy:368
translate ru chapter_x1_4539df8e:
# "A shame the only one they had left was a size too small and my fingers barely fit."
"Жаль, что он оказался слишком маленького размера, и мои пальцы в него едва поместились."
# game/script/x1-chicxulub-gutterlane.rpy:371
translate ru chapter_x1_87080f18:
# "I heft the smaller ball and take my cues from all my best attempts in Ninpebble Stick Bowling."
"Я поднимаю шар и вспоминаю свои действия из всех лучших попыток в Ninpebble Stick Bowling."
# game/script/x1-chicxulub-gutterlane.rpy:373
translate ru chapter_x1_f9c71819:
# "Lining up the shot I look down the lane at the pins."
"Готовясь к броску, я мысленно выстраиваю линию прямиком до первой кегли."
# game/script/x1-chicxulub-gutterlane.rpy:378
translate ru chapter_x1_54f3444f:
# "Using Rips advice I picture Naomis face on the pins."
"Используя совет Рипа, я представляю лицо Наоми на кеглях."
# game/script/x1-chicxulub-gutterlane.rpy:380
translate ru chapter_x1_7e9a5ccf:
# "Sorry not sorry Naser."
"Сорри нот сорри, Незер."
# game/script/x1-chicxulub-gutterlane.rpy:386
translate ru chapter_x1_2d1bdf5f:
# "With a big wind up that threatens to pull my arm from its socket I launch the ball."
"С сильным взмахом, что грозит оторвать мою руку от туловища, я запускаю шар."
# game/script/x1-chicxulub-gutterlane.rpy:389
translate ru chapter_x1_5d76ea13:
# "Right into the back of my foot."
"Прямо в заднюю часть своей стопы."
# game/script/x1-chicxulub-gutterlane.rpy:407
translate ru chapter_x1_6d27135b:
# A "SONOFAWHOREFUCKINGCUNT. "
A "ЁБАНЫЙБЛЯТЬНАСРАЛ. "
# game/script/x1-chicxulub-gutterlane.rpy:410
translate ru chapter_x1_6727329b:
# extend "GODDAMNMOTHERFUCKINGSHIT. " with vpunch
extend "НАХУЙСУКАТВОЮМАТЬ. " with vpunch
# game/script/x1-chicxulub-gutterlane.rpy:421
translate ru chapter_x1_1ad6e596:
# extend "FUUUUUUUUUUUUUUUUUUUUUUUUU-{nw}" with vpunch
extend "БЛЯЯЯЯЯЯЯЯЯЯЯЯЯЯЯЯЯЯЯЯЯЯЯЯ-{nw}" with vpunch
# game/script/x1-chicxulub-gutterlane.rpy:423
translate ru chapter_x1_4b09126b:
# A "-UUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUU-{nw}"
A "-ЯЯЯЯЯЯЯЯЯЯЯЯЯЯЯЯЯЯЯЯЯЯЯЯЯЯЯЯЯЯЯЯЯЯЯЯЯЯЯЯЯЯЯЯЯЯЯЯЯЯЯЯЯЯ-{nw}"
# game/script/x1-chicxulub-gutterlane.rpy:425
translate ru chapter_x1_06ef145e:
# A "-UUUUUUUUUUUUUUUUUUUUUUUUUUUUCKING SHITCUNTASSHOLEFUCK!"
A "-ЯЯЯЯЯЯЯЯЯЯЯЯЯЯЯЯЯЯЯЯЯЯЯЯЯЯЯЯДСКАЯ ПИЗДОГОВНОПРОЁБИНА!"
# game/script/x1-chicxulub-gutterlane.rpy:432
translate ru chapter_x1_209c2d87:
# A "OF ALL THE MOTHERFUCKING BULLSHIT TO FUCKING HAPPEN IN MY GOD FORSAKEN LIFE HOW THE FUCK DOES THAT HAPPEN!"
A "ИЗ ВСЕХ ЁБАНЫХ ВЕЩЕЙ КОТОРЫЕ МОГЛИ ПРОИЗОЙТИ В МОЕЙ БОГОМ ЗАБЫТОЙ И ОБОССАННОЙ ЖИЗНИ КАК ЭТО БЛЯТЬ ПРОИЗОШЛО!"
# game/script/x1-chicxulub-gutterlane.rpy:434
translate ru chapter_x1_b4040202:
# A "FUCKING LEAF EATER BALL FUCK MY LIFE OW GOD MOTHER FUCK DAMN!"
A "ЕБУЧИЙ БЛЯДСКИЙ ШАР НАХУЙ В РОТ МЕНЯ ЕБАТЬ БЛЯТЬ ГОСПОДИ ЁБАНЫЙ ПИЗДЕЦ!"
# game/script/x1-chicxulub-gutterlane.rpy:436
translate ru chapter_x1_82318c9b:
# A "WHAT THE FUCK IS THIS FUCKING TOM AND JERRY BULLSHIT HOW THE FUCK DOES THIS FUCKING HAPPEN!"
A "ЧТО ЭТО БЛЯТЬ ЗА ПИЗДАХУЮЧАЯ ХРЕНЬ ПРЯМИКОМ ИЗ ТОМА И ДЖЕРРИ КАК БЛЯТЬ ЭТО НАХУЙ ПРОИЗОШЛО!"
# game/script/x1-chicxulub-gutterlane.rpy:438
translate ru chapter_x1_53552f15:
# A "DONT JUST STAND THERE AND GAWK YOU JACKASSES GET A FUCKING FIRST AID BOX OR SOMETHING FOR FUCKS SAKE! YOU USELESS FUCKING ASSHOLES HOLY SHIT THIS HURTS LIKE HELL!"
A "ХВАТИТ ТАМ ПРОСТО СТОЯТЬ И ТАРАЩИТЬСЯ МУДИЛЫ ТАЩИТЕ ЕБУЧУЮ АПТЕЧКУ ИЛИ ЧТО-НИБУДЬ РАДИ БОГА! ВЫ БЕСПОЛЕЗНЫЕ ХУИЛЫ СРАНЬ ГОСПОДНЯ ЭТО ПИЗДЕЦ КАК БОЛЬНО!"
# game/script/x1-chicxulub-gutterlane.rpy:440
translate ru chapter_x1_59bcc74d:
# A "AAAAAA FUCK MY FUCKING FOOT I THINK I BROKE MY FUCKING FOOT!"
A "АААААА БЛЯТЬ МОЯ НОГА Я ДУМАЮ Я СЛОМАЛ СВОЮ ЕБУЧУЮ НОГУ!"
# game/script/x1-chicxulub-gutterlane.rpy:444
translate ru chapter_x1_f73259b4:
# A "GOD DAAAAAAAAAAAAAAMN IIIIIIIIIIIIIIIIIIIIIIIT!"
A "ТВОЮ МААААААААААААТЬ!"
# game/script/x1-chicxulub-gutterlane.rpy:456
translate ru chapter_x1_3910d94a:
# "When I finally stop to catch my breath I realize all eyes in the building are on me."
"Когда я, наконец, останавливаюсь, чтобы перевести дыхание, я понимаю, что все глаза в заведении направлены в мою сторону."
# game/script/x1-chicxulub-gutterlane.rpy:458
translate ru chapter_x1_6c0bf5d6:
# "Naser has his phone set on me."
"Незер снимает меня на телефон."
# game/script/x1-chicxulub-gutterlane.rpy:460
translate ru chapter_x1_bb49086f:
# "Even Fangs father is staring with a dumbfounded look on his face."
"Даже отец Фэнг смотрит на меня с ошеломлённым выражением лица."
# game/script/x1-chicxulub-gutterlane.rpy:462
translate ru chapter_x1_857a4896:
# "I break out into a sweat again, eyes darting to find the nearest bathroom."
"Меня снова бросает в пот, глаза бегают в поисках ближайшего туалета."
# game/script/x1-chicxulub-gutterlane.rpy:465
translate ru chapter_x1_54257bcf:
# "Moe gestures to Mister Ripley."
"Мо жестикулирует в сторону мистера Рипли."
# game/script/x1-chicxulub-gutterlane.rpy:467
translate ru chapter_x1_22f28fc2:
# Moe "That beats your record, dont it?"
Moe "Эта же бьёт твой рекорд, не так ли?"
# game/script/x1-chicxulub-gutterlane.rpy:469
translate ru chapter_x1_df72c6a7:
# "An attendant throws his hands in the air."
"Сотрудник клуба вскидывает руки."
# game/script/x1-chicxulub-gutterlane.rpy:471
translate ru chapter_x1_7c7b454d:
# Attendant "It does! Its a new record!"
Attendant "Так и есть! Это новый рекорд!"
# game/script/x1-chicxulub-gutterlane.rpy:474
translate ru chapter_x1_5cbb4a70:
# "All at once all the patrons of the bowling alley burst into cheers and applause."
"Одновременно все посетители боулинга разразились радостными возгласами и аплодисментами."
# game/script/x1-chicxulub-gutterlane.rpy:479
translate ru chapter_x1_e847f6e1:
# A "Wha?"
A "Каво?"
# game/script/x1-chicxulub-gutterlane.rpy:488
translate ru chapter_x1_041007e9:
# FD "That was a full six minutes you were going off."
FD "Ты выходил из себя целых шесть минут к ряду."
# game/script/x1-chicxulub-gutterlane.rpy:496
translate ru chapter_x1_f0253a6e:
# Nas "The recording is seven minutes and thirty-three seconds, actually."
Nas "На самом деле, запись длится семь минут и тридцать три секунды."
# game/script/x1-chicxulub-gutterlane.rpy:505
translate ru chapter_x1_5a601c7c:
# Moe "The last record was only five minutes and some change."
Moe "Последний рекорд длился всего пять с чем-та минут."
# game/script/x1-chicxulub-gutterlane.rpy:508
translate ru chapter_x1_c414f071:
# A "Thats nice and all but MY FOOT IS STILL FUCKING BROKEN!"
A "Это всё, конечно, здорово, но МОЯ ЕБУЧАЯ НОГА ВСЁ ЕЩЁ СЛОМАНА!"
# game/script/x1-chicxulub-gutterlane.rpy:510
translate ru chapter_x1_ab93ccc1:
# Nas "Does it even still hurt?"
Nas "Она хоть вообще ещё болит?"
# game/script/x1-chicxulub-gutterlane.rpy:512
translate ru chapter_x1_936c6697:
# A "{cps=*.1}...{/cps}"
A "{cps=*.1}...{/cps}"
# game/script/x1-chicxulub-gutterlane.rpy:515
translate ru chapter_x1_b84e32a6:
# A "{cps=*.1}...{/cps}Huh{cps=*.1}...{/cps}"
A "{cps=*.1}...{/cps}Оу{cps=*.1}...{/cps}"
# game/script/x1-chicxulub-gutterlane.rpy:519
translate ru chapter_x1_7ddb7201:
# FD "I tried to do a trickshot, ended up tripping Moe and{cps=*.1}...{/cps}"
FD "Я однажды пытался сделать трикшот, но в итоге столкнулся с Мо и{cps=*.1}...{/cps}"
# game/script/x1-chicxulub-gutterlane.rpy:521
translate ru chapter_x1_6450348d:
# "He waves a finger around the hole in his crest."
"Он крутит пальцем вокруг дыры в своём гребне."
# game/script/x1-chicxulub-gutterlane.rpy:523
translate ru chapter_x1_4d8629c0:
# Moe "I still got the metal plate in my head, too."
Moe "У меня до сих пор есть металлический пластина в голове."
# game/script/x1-chicxulub-gutterlane.rpy:525
translate ru chapter_x1_60ccd409:
# "Moe knocks a fist against the bottom of his skull, a metallic thump echoing out."
"Мо стучит кулачком по нижней части черепа. Металлический лязг отдаётся эхом."
# game/script/x1-chicxulub-gutterlane.rpy:528
translate ru chapter_x1_310efb81:
# Attendant "The managers approved a reward for beating out the twenty-year-old record!"
Attendant "Менеджер утвердил награду за побитие двадцатилетнего рекорда!"
# game/script/x1-chicxulub-gutterlane.rpy:530
translate ru chapter_x1_79146e56:
# A "Oh, cool, a bowling ball of my own?"
A "О, прикольно, мой собственный шар для боулинга?"
# game/script/x1-chicxulub-gutterlane.rpy:532
translate ru chapter_x1_01449d5b:
# Attendant "Those shoes youre wearing, theyre yours."
Attendant "Те туфли, которые вы носите они теперь ваши."
# game/script/x1-chicxulub-gutterlane.rpy:535
translate ru chapter_x1_52b683d1:
# "Naser stifles a cough."
"Незер сдерживает усмешливый кашель."
# game/script/x1-chicxulub-gutterlane.rpy:538
translate ru chapter_x1_7d779d50:
# A "{cps=*.1}...{/cps}Thanks{cps=*.1}...{/cps}"
A "{cps=*.1}...{/cps}Спасибо{cps=*.1}...{/cps}"
# game/script/x1-chicxulub-gutterlane.rpy:540
translate ru chapter_x1_d943fbea:
# Moe "Either way, we should probably get a first aid kit."
Moe "В любом случае, нам, вероятно, всё же стоит принести аптечка."
# game/script/x1-chicxulub-gutterlane.rpy:543
translate ru chapter_x1_904267cd:
# Nas "Think I saw one by the entrance, lets go get it."
Nas "Думаю, я видел одну у входа, пошли возьмём её."
# game/script/x1-chicxulub-gutterlane.rpy:557
translate ru chapter_x1_d396a379:
# "The two go hunting for the first aid kit, and I am left alone with Mister Ripley again."
"Они отправились на охоту за аптечкой, а я опять остался наедине с мистером Рипли."
# game/script/x1-chicxulub-gutterlane.rpy:559
translate ru chapter_x1_0d56389b:
# "I dont really care anymore right now, Im just worn out."
"Но сейчас мне уже всё равно, я окончательно выдохся."
# game/script/x1-chicxulub-gutterlane.rpy:562
translate ru chapter_x1_c3fd8687:
# FD "Yknow{cps=*.1}...{/cps}"
FD "Знаешь{cps=*.1}...{/cps}"
# game/script/x1-chicxulub-gutterlane.rpy:564
translate ru chapter_x1_4dcf4ab7:
# "Here we go."
"Ну началось."
# game/script/x1-chicxulub-gutterlane.rpy:566
translate ru chapter_x1_abe66ccb:
# FD "I didnt know you had it in you."
FD "Я и не догадывался, что в тебе это есть."
# game/script/x1-chicxulub-gutterlane.rpy:569
translate ru chapter_x1_e31b37d1:
# A "Had what in me?"
A "Что во мне есть?"
# game/script/x1-chicxulub-gutterlane.rpy:571
translate ru chapter_x1_23b63452:
# FD "Me."
FD "Я."
# game/script/x1-chicxulub-gutterlane.rpy:574
translate ru chapter_x1_04840908:
# A "Pardon?"
A "Прошу прощения?"
# game/script/x1-chicxulub-gutterlane.rpy:576
translate ru chapter_x1_24fdb961:
# FD "Seven minutes straight, no regrets, no holding back, and with a single breath."
FD "Семь минут к ряду, без сожалений, не сдерживаясь, и на одном дыхании."
# game/script/x1-chicxulub-gutterlane.rpy:578
translate ru chapter_x1_a9f769d5:
# FD "I can see a young me in you, Anon."
FD "Я вижу в тебе молодого себя, Анон."
# game/script/x1-chicxulub-gutterlane.rpy:581
translate ru chapter_x1_e6a71d2f:
# FD "And I can also see what my daughter sees in you."
FD "И я также вижу то, что в тебе видит моя дочь."
# game/script/x1-chicxulub-gutterlane.rpy:583
translate ru chapter_x1_b8c74587:
# FD "A strong will, and an iron lung."
FD "Сильную волю и крепкий дух."
# game/script/x1-chicxulub-gutterlane.rpy:586
translate ru chapter_x1_ee3aebf9:
# A "O-oh, thank you, sir."
A "О-оу, спасибо вам, сэр."
# game/script/x1-chicxulub-gutterlane.rpy:589
translate ru chapter_x1_fe16c2f1:
# A "Does that mean youre okay with-"
A "Это значит, что вы не против-"
# game/script/x1-chicxulub-gutterlane.rpy:591
translate ru chapter_x1_9d939490:
# FD "You set foot near second base Ill finish the job that bowling ball couldnt."
FD "Но лишь только я почувствую тебя рядом со ‘второй базой’ я закончу ту работу, которую не смог сделать этот шар."
# game/script/x1-chicxulub-gutterlane.rpy:593
translate ru chapter_x1_c4adce05:
# A "Understood."
A "Понял."
# game/script/x1-chicxulub-gutterlane.rpy:597
translate ru chapter_x1_2de66667:
# FD "Good talk."
FD "Хорошо поговорили."
# game/script/x1-chicxulub-gutterlane.rpy:599
translate ru chapter_x1_2d7177b8:
# FD "Next time, we oughtta go fishing together."
FD "В следующий раз мы поедем на рыбалку."
# game/script/x1-chicxulub-gutterlane.rpy:601
translate ru chapter_x1_cbea7adc:
# A "Next time?"
A "В следующий раз?"
# game/script/x1-chicxulub-gutterlane.rpy:603
translate ru chapter_x1_c3cb9473:
# FD "Yeah{cps=*.1}...{/cps}"
FD "Да{cps=*.1}...{/cps}"
# game/script/x1-chicxulub-gutterlane.rpy:605
translate ru chapter_x1_72eeb5b5:
# FD "Next time."
FD "В следующий раз."

File diff suppressed because it is too large Load Diff

Some files were not shown because too many files have changed in this diff Show More