Code: Select all
label start:
default pink = 1
default blue = 1
default yellow = 1
$ pink = random.randint(1, 5)
$ blue = random.randint(1, 4)
$ yellow = random.randint(1, 5)Code: Select all
label pink:
show bg gachaP with fade
b "Hurray!"
b "Twist the knob and see what you get!"
if pink==1:
$ persistent.unlock_1 = True
show p_open
pause 2
hide p_open with dissolve
show P01 at middle with dissolve
b "woohoo"
b "Would you like to play again?"
hide P01 with dissolve
menu:
"Yes!":
b "Hurray! Stay on this machine or pick a new one?"
menu:
"New one":
jump choose
"Stay with Pink":
jump pink
"No!":
b "Ok, no problem! Hope to see you again real soon!"
return