Some Minor additions + webp image conversion
more details in the release notes!
This commit is contained in:
@@ -35,6 +35,7 @@ define m = Character("מתנדב", color= "#00704f")
|
||||
define m2 = Character("מתנדבת", color= "#00704f")
|
||||
define st = Character("אדם זר", color= "#00704f")
|
||||
define am = Character("עמית נדבת", color= "#00704f")
|
||||
define am2 = Character("עמית עוררת", color= "#00704f")
|
||||
define vip = Character("ורוניקה איזבלה פרלוב", color= "#00704f",what_font="MPLUSRounded1c-Regular.ttf")
|
||||
define shp = Character("מוכר", color= "#00704f")
|
||||
define mtt = Character("המנחה", color= "#00704f")
|
||||
@@ -85,6 +86,9 @@ default persistent.aoi_ending_bad = False
|
||||
default persistent.shiro_ending_bad = False
|
||||
default persistent.akai_ending_bad = False
|
||||
|
||||
# tally for endings
|
||||
|
||||
default endings_tally = 0
|
||||
|
||||
|
||||
## styles:
|
||||
@@ -101,9 +105,9 @@ style excited is text:
|
||||
# bounce left to right
|
||||
transform left_to_right:
|
||||
yalign 1.0
|
||||
easein_bounce 3 xalign 1.0
|
||||
ease 2 xalign 0.8
|
||||
pause 0.5
|
||||
ease 3 xalign .1
|
||||
ease 2 xalign 0.2
|
||||
pause 0.5
|
||||
repeat
|
||||
|
||||
@@ -134,6 +138,7 @@ label start:
|
||||
"תודה רבה לכם שהחלטתם לשחק במשחק שלנו ואנחנו מקווים שתהנו ממנו כמו שאנחנו נהננו להכין אותו."
|
||||
|
||||
"לתשומת ליבכם והבנתכם: דמות השחקן במשחק מיוצגת כדמות בן על מנת להקל על יצירת המשחק."
|
||||
|
||||
|
||||
jump intro_scene
|
||||
|
||||
@@ -154,6 +159,24 @@ label start:
|
||||
|
||||
"תודה רבה! לא נשתמש בזה, אבל טוב לדעת שאתה מוכן לשיתוף פעולה!"
|
||||
|
||||
if persistent.akai_ending == True or persistent.aoi_ending == True or persistent.shiro_ending == True or persistent.akai_ending_bad == True or persistent.shiro_ending_bad == True or persistent.aoi_ending_bad == True:
|
||||
label skip_intro:
|
||||
"אבל רק רגע!"
|
||||
|
||||
"נראה כאילו כבר שיחקת במשחק פעם או פעמיים."
|
||||
|
||||
"האם תרצה לקפוץ ישר כבר לכנס?"
|
||||
|
||||
menu:
|
||||
"אני רוצה ללכת לכנס ישר!":
|
||||
jump con_post_intro
|
||||
"אני אוהב לשמוע אקספוזיציה!":
|
||||
pass
|
||||
|
||||
"בחרת לחוות מחדש את כל יום הכנס. אפילו את רכבת ישראל!"
|
||||
|
||||
"בהצלחה!"
|
||||
|
||||
"ההתרגשות באוויר והפרפרים בבטן כבר משתוללים. "
|
||||
|
||||
"הדרך המהירה ביותר לכנס היא הרכבת, זה למה אתה כאן. בתחנת הרכבת."
|
||||
@@ -484,13 +507,14 @@ label start:
|
||||
hide game logo
|
||||
with dissolve
|
||||
|
||||
window show
|
||||
scene bg_con_booths
|
||||
with fade
|
||||
play music bgm_convention
|
||||
|
||||
|
||||
## main branching paths
|
||||
label con_post_intro :
|
||||
window show
|
||||
scene bg_con_booths
|
||||
with fade
|
||||
play music bgm_convention
|
||||
p "מה הדבר הראשון שאעשה? אלך לדוכנים? אקנה מנגה? אולי אלך להרצאה? אפשר כבר לשמור מקום בקהל התחרות?"
|
||||
|
||||
"חכה רגע, הבטחת שתעזור לחבריך החדשים! החלטת למי מהם תעזור?"
|
||||
@@ -514,7 +538,32 @@ label start:
|
||||
|
||||
return
|
||||
|
||||
#####################################
|
||||
# Main Branches start here! #
|
||||
# Hoo boy let's go #
|
||||
#####################################
|
||||
|
||||
## Post endings
|
||||
label post_ending:
|
||||
stop music fadeout 1.0
|
||||
scene black with fade
|
||||
|
||||
"שחקן יקר שחקן נעים,"
|
||||
|
||||
if persistent.aoi_ending == True:
|
||||
$ endings_tally += 1
|
||||
if persistent.shiro_ending == True:
|
||||
$ endings_tally += 1
|
||||
if persistent.akai_ending == True:
|
||||
$ endings_tally += 1
|
||||
if persistent.aoi_ending_bad == True:
|
||||
$ endings_tally += 1
|
||||
if persistent.shiro_ending_bad == True:
|
||||
$ endings_tally += 1
|
||||
if persistent.akai_ending_bad == True:
|
||||
$ endings_tally += 1
|
||||
|
||||
"השגת
|
||||
{=txtbold} [endings_tally] מתוך 6 סופים! "
|
||||
|
||||
"אם את השאר תרצה לגלות,"
|
||||
|
||||
"עליך לבצע בחירות אחרות!"
|
||||
|
||||
return
|
||||
Reference in New Issue
Block a user