mirror of
https://git.cavemanon.xyz/Cavemanon/SnootGame.git
synced 2025-02-02 06:46:34 +01:00
Implement functions to increase Anon and Fang scores
This commit is contained in:
parent
4d449593f5
commit
a65a5075fe
8 changed files with 11 additions and 11 deletions
|
@ -1688,7 +1688,7 @@ label chapter_3:
|
||||||
|
|
||||||
label GuitarQuestionSpeakUp:
|
label GuitarQuestionSpeakUp:
|
||||||
|
|
||||||
$ fangscore += 1
|
$ increase_fang_points()
|
||||||
|
|
||||||
"Fang does seem very passionate about playing guitar."
|
"Fang does seem very passionate about playing guitar."
|
||||||
|
|
||||||
|
|
|
@ -654,7 +654,7 @@ label chapter_4:
|
||||||
|
|
||||||
label lHeads:
|
label lHeads:
|
||||||
|
|
||||||
$ fangscore += 1
|
$ increase_fang_points()
|
||||||
|
|
||||||
"Guess that’s that."
|
"Guess that’s that."
|
||||||
|
|
||||||
|
|
|
@ -1193,7 +1193,7 @@ label chapter_5:
|
||||||
|
|
||||||
label lbeHonest:
|
label lbeHonest:
|
||||||
|
|
||||||
$ anonscore += 1
|
$ increase_anon_points()
|
||||||
|
|
||||||
"I guess honesty is the best policy."
|
"I guess honesty is the best policy."
|
||||||
window hide
|
window hide
|
||||||
|
@ -3584,8 +3584,8 @@ label chapter_5:
|
||||||
if _value != "Snot":
|
if _value != "Snot":
|
||||||
renpy.jump(_value+chr(0x61+_tick))
|
renpy.jump(_value+chr(0x61+_tick))
|
||||||
|
|
||||||
$ fangscore += 1
|
$ increase_fang_points()
|
||||||
$ anonscore += 1
|
$ increase_anon_points()
|
||||||
$ wingStory = True
|
$ wingStory = True
|
||||||
|
|
||||||
A "{cps=*.1}...{/cps}"
|
A "{cps=*.1}...{/cps}"
|
||||||
|
|
|
@ -1918,7 +1918,7 @@ label chapter_6:
|
||||||
|
|
||||||
|
|
||||||
label lAnonWaitsForFang:
|
label lAnonWaitsForFang:
|
||||||
$ anonscore += 1
|
$ increase_anon_points()
|
||||||
|
|
||||||
"{cps=*.1}...{/cps}No."
|
"{cps=*.1}...{/cps}No."
|
||||||
|
|
||||||
|
@ -2308,7 +2308,7 @@ label chapter_6:
|
||||||
|
|
||||||
label lAskFang:
|
label lAskFang:
|
||||||
|
|
||||||
$ fangscore += 1
|
$ increase_fang_points()
|
||||||
|
|
||||||
A "Don’t worry about it."
|
A "Don’t worry about it."
|
||||||
pause .5
|
pause .5
|
||||||
|
|
|
@ -477,7 +477,7 @@ label chapter_7:
|
||||||
renpy.jump(renpy.display_menu(randomize_choices(choices)))
|
renpy.jump(renpy.display_menu(randomize_choices(choices)))
|
||||||
|
|
||||||
label LeaveStageAsIs:
|
label LeaveStageAsIs:
|
||||||
$ anonscore += 1
|
$ increase_anon_points()
|
||||||
pause .5
|
pause .5
|
||||||
"Reed may not understand cable management,{w=.4} but then again neither did I."
|
"Reed may not understand cable management,{w=.4} but then again neither did I."
|
||||||
|
|
||||||
|
|
|
@ -630,7 +630,7 @@ label chapter_8:
|
||||||
|
|
||||||
|
|
||||||
label lLetFangPlayGuit:
|
label lLetFangPlayGuit:
|
||||||
$ fangscore += 1
|
$ increase_fang_points()
|
||||||
|
|
||||||
pause .5
|
pause .5
|
||||||
|
|
||||||
|
|
|
@ -1297,7 +1297,7 @@ label chapter_9:
|
||||||
jump lGoHomeEarly
|
jump lGoHomeEarly
|
||||||
|
|
||||||
label lWaitForTrishToExit:
|
label lWaitForTrishToExit:
|
||||||
$ anonscore += 1
|
$ increase_anon_points()
|
||||||
|
|
||||||
#play music 'audio/OST/fighter.ogg' fadein 1.0
|
#play music 'audio/OST/fighter.ogg' fadein 1.0
|
||||||
A "You worried about her, too?"
|
A "You worried about her, too?"
|
||||||
|
|
|
@ -52,7 +52,7 @@ init python:
|
||||||
anonscore += 1
|
anonscore += 1
|
||||||
|
|
||||||
|
|
||||||
def inscrease_fang_points():
|
def increase_fang_points():
|
||||||
global fangscore, lock_scores
|
global fangscore, lock_scores
|
||||||
|
|
||||||
if not lock_scores:
|
if not lock_scores:
|
||||||
|
|
Loading…
Reference in a new issue