Implement functions to increase Anon and Fang scores

This commit is contained in:
Iggy 2024-08-21 21:44:48 -03:00
parent 4d449593f5
commit a65a5075fe
8 changed files with 11 additions and 11 deletions

View file

@ -1688,7 +1688,7 @@ label chapter_3:
label GuitarQuestionSpeakUp:
$ fangscore += 1
$ increase_fang_points()
"Fang does seem very passionate about playing guitar."

View file

@ -654,7 +654,7 @@ label chapter_4:
label lHeads:
$ fangscore += 1
$ increase_fang_points()
"Guess thats that."

View file

@ -1193,7 +1193,7 @@ label chapter_5:
label lbeHonest:
$ anonscore += 1
$ increase_anon_points()
"I guess honesty is the best policy."
window hide
@ -3584,8 +3584,8 @@ label chapter_5:
if _value != "Snot":
renpy.jump(_value+chr(0x61+_tick))
$ fangscore += 1
$ anonscore += 1
$ increase_fang_points()
$ increase_anon_points()
$ wingStory = True
A "{cps=*.1}...{/cps}"

View file

@ -1918,7 +1918,7 @@ label chapter_6:
label lAnonWaitsForFang:
$ anonscore += 1
$ increase_anon_points()
"{cps=*.1}...{/cps}No."
@ -2308,7 +2308,7 @@ label chapter_6:
label lAskFang:
$ fangscore += 1
$ increase_fang_points()
A "Dont worry about it."
pause .5

View file

@ -477,7 +477,7 @@ label chapter_7:
renpy.jump(renpy.display_menu(randomize_choices(choices)))
label LeaveStageAsIs:
$ anonscore += 1
$ increase_anon_points()
pause .5
"Reed may not understand cable management,{w=.4} but then again neither did I."

View file

@ -630,7 +630,7 @@ label chapter_8:
label lLetFangPlayGuit:
$ fangscore += 1
$ increase_fang_points()
pause .5

View file

@ -1297,7 +1297,7 @@ label chapter_9:
jump lGoHomeEarly
label lWaitForTrishToExit:
$ anonscore += 1
$ increase_anon_points()
#play music 'audio/OST/fighter.ogg' fadein 1.0
A "You worried about her, too?"

View file

@ -52,7 +52,7 @@ init python:
anonscore += 1
def inscrease_fang_points():
def increase_fang_points():
global fangscore, lock_scores
if not lock_scores: