Sort by name
This commit is contained in:
parent
52c743026a
commit
22530fdc97
95
gml_Object_ba1_Mouse_7.gml
Normal file
95
gml_Object_ba1_Mouse_7.gml
Normal file
@ -0,0 +1,95 @@
|
||||
if (global.recipemode != "index")
|
||||
{
|
||||
audio_play_sound(jukechange, 1, false)
|
||||
audio_sound_gain(jukechange, ((global.sfxvolume - 20) / 100), 0)
|
||||
}
|
||||
if (global.recipemode == "sweet")
|
||||
{
|
||||
global.indexphase = "home"
|
||||
global.recipeindex = 21
|
||||
}
|
||||
else if (global.recipemode == "bitter")
|
||||
{
|
||||
global.indexphase = "home"
|
||||
global.recipeindex = 22
|
||||
}
|
||||
else if (global.recipemode == "sour")
|
||||
{
|
||||
global.indexphase = "home"
|
||||
global.recipeindex = 9
|
||||
}
|
||||
else if (global.recipemode == "spicy")
|
||||
{
|
||||
global.indexphase = "home"
|
||||
global.recipeindex = 14
|
||||
}
|
||||
else if (global.recipemode == "bubbly")
|
||||
{
|
||||
global.indexphase = "home"
|
||||
global.recipeindex = 2
|
||||
}
|
||||
else if (global.recipemode == "girly")
|
||||
{
|
||||
global.indexphase = "home"
|
||||
global.recipeindex = 21
|
||||
}
|
||||
else if (global.recipemode == "manly")
|
||||
{
|
||||
global.indexphase = "home"
|
||||
global.recipeindex = 13
|
||||
}
|
||||
else if (global.recipemode == "classic")
|
||||
{
|
||||
global.indexphase = "home"
|
||||
global.recipeindex = 2
|
||||
}
|
||||
else if (global.recipemode == "classy")
|
||||
{
|
||||
global.indexphase = "home"
|
||||
global.recipeindex = 1
|
||||
}
|
||||
else if (global.recipemode == "promo")
|
||||
{
|
||||
global.indexphase = "home"
|
||||
global.recipeindex = 12
|
||||
}
|
||||
else if (global.recipemode == "b")
|
||||
{
|
||||
global.indexphase = "home"
|
||||
global.recipeindex = 5
|
||||
}
|
||||
else if (global.recipemode == "c")
|
||||
{
|
||||
global.indexphase = "home"
|
||||
global.recipeindex = 14
|
||||
}
|
||||
else if (global.recipemode == "f")
|
||||
{
|
||||
global.indexphase = "home"
|
||||
global.recipeindex = 19
|
||||
}
|
||||
else if (global.recipemode == "g")
|
||||
{
|
||||
global.indexphase = "home"
|
||||
global.recipeindex = 4
|
||||
}
|
||||
else if (global.recipemode == "m")
|
||||
{
|
||||
global.indexphase = "home"
|
||||
global.recipeindex = 2
|
||||
}
|
||||
else if (global.recipemode == "p")
|
||||
{
|
||||
global.indexphase = "home"
|
||||
global.recipeindex = 7
|
||||
}
|
||||
else if (global.recipemode == "s")
|
||||
{
|
||||
global.indexphase = "home"
|
||||
global.recipeindex = 1
|
||||
}
|
||||
else if (global.recipemode == "z")
|
||||
{
|
||||
global.indexphase = "home"
|
||||
global.recipeindex = 24
|
||||
}
|
90
gml_Object_ba2_Mouse_7.gml
Normal file
90
gml_Object_ba2_Mouse_7.gml
Normal file
@ -0,0 +1,90 @@
|
||||
if (global.recipemode != "index" && global.indexphase != "ex" && global.recipemode != "z")
|
||||
{
|
||||
audio_play_sound(jukechange, 1, false)
|
||||
audio_sound_gain(jukechange, ((global.sfxvolume - 20) / 100), 0)
|
||||
}
|
||||
if (global.recipemode == "sweet")
|
||||
{
|
||||
global.indexphase = "home"
|
||||
global.recipeindex = 20
|
||||
}
|
||||
else if (global.recipemode == "bitter")
|
||||
{
|
||||
global.indexphase = "home"
|
||||
global.recipeindex = 13
|
||||
}
|
||||
else if (global.recipemode == "sour")
|
||||
{
|
||||
global.indexphase = "home"
|
||||
global.recipeindex = 8
|
||||
}
|
||||
else if (global.recipemode == "spicy")
|
||||
{
|
||||
global.indexphase = "home"
|
||||
global.recipeindex = 3
|
||||
}
|
||||
else if (global.recipemode == "bubbly")
|
||||
{
|
||||
global.indexphase = "home"
|
||||
global.recipeindex = 11
|
||||
}
|
||||
else if (global.recipemode == "girly")
|
||||
{
|
||||
global.indexphase = "home"
|
||||
global.recipeindex = 20
|
||||
}
|
||||
else if (global.recipemode == "manly")
|
||||
{
|
||||
global.indexphase = "home"
|
||||
global.recipeindex = 19
|
||||
}
|
||||
else if (global.recipemode == "classic")
|
||||
{
|
||||
global.indexphase = "home"
|
||||
global.recipeindex = 3
|
||||
}
|
||||
else if (global.recipemode == "classy")
|
||||
{
|
||||
global.indexphase = "home"
|
||||
global.recipeindex = 6
|
||||
}
|
||||
else if (global.recipemode == "promo")
|
||||
{
|
||||
global.indexphase = "home"
|
||||
global.recipeindex = 4
|
||||
}
|
||||
else if (global.recipemode == "b")
|
||||
{
|
||||
global.indexphase = "home"
|
||||
global.recipeindex = 6
|
||||
}
|
||||
else if (global.recipemode == "c")
|
||||
{
|
||||
global.indexphase = "home"
|
||||
global.recipeindex = 15
|
||||
}
|
||||
else if (global.recipemode == "f")
|
||||
{
|
||||
global.indexphase = "home"
|
||||
global.recipeindex = 11
|
||||
}
|
||||
else if (global.recipemode == "g")
|
||||
{
|
||||
global.indexphase = "home"
|
||||
global.recipeindex = 13
|
||||
}
|
||||
else if (global.recipemode == "m")
|
||||
{
|
||||
global.indexphase = "home"
|
||||
global.recipeindex = 17
|
||||
}
|
||||
else if (global.recipemode == "p")
|
||||
{
|
||||
global.indexphase = "home"
|
||||
global.recipeindex = 21
|
||||
}
|
||||
else if (global.recipemode == "s")
|
||||
{
|
||||
global.indexphase = "home"
|
||||
global.recipeindex = 10
|
||||
}
|
7
gml_Object_ba3_Mouse_10.gml
Normal file
7
gml_Object_ba3_Mouse_10.gml
Normal file
@ -0,0 +1,7 @@
|
||||
hover = 1
|
||||
if ((!hoversound) && global.recipemode != "index" && global.indexphase != "ex" && global.recipemode != "b" && global.recipemode != "z")
|
||||
{
|
||||
hoversound = 1
|
||||
audio_play_sound(mouse_hover, 1, false)
|
||||
audio_sound_gain(mouse_hover, ((global.sfxvolume - 20) / 100), 0)
|
||||
}
|
85
gml_Object_ba3_Mouse_7.gml
Normal file
85
gml_Object_ba3_Mouse_7.gml
Normal file
@ -0,0 +1,85 @@
|
||||
if (global.recipemode != "index" && global.indexphase != "ex" && global.recipemode != "b" && global.recipemode != "z")
|
||||
{
|
||||
audio_play_sound(jukechange, 1, false)
|
||||
audio_sound_gain(jukechange, ((global.sfxvolume - 20) / 100), 0)
|
||||
}
|
||||
if (global.recipemode == "sweet")
|
||||
{
|
||||
global.indexphase = "home"
|
||||
global.recipeindex = 5
|
||||
}
|
||||
else if (global.recipemode == "bitter")
|
||||
{
|
||||
global.indexphase = "home"
|
||||
global.recipeindex = 19
|
||||
}
|
||||
else if (global.recipemode == "sour")
|
||||
{
|
||||
global.indexphase = "home"
|
||||
global.recipeindex = 1
|
||||
}
|
||||
else if (global.recipemode == "spicy")
|
||||
{
|
||||
global.indexphase = "home"
|
||||
global.recipeindex = 4
|
||||
}
|
||||
else if (global.recipemode == "bubbly")
|
||||
{
|
||||
global.indexphase = "home"
|
||||
global.recipeindex = 7
|
||||
}
|
||||
else if (global.recipemode == "girly")
|
||||
{
|
||||
global.indexphase = "home"
|
||||
global.recipeindex = 5
|
||||
}
|
||||
else if (global.recipemode == "manly")
|
||||
{
|
||||
global.indexphase = "home"
|
||||
global.recipeindex = 23
|
||||
}
|
||||
else if (global.recipemode == "classic")
|
||||
{
|
||||
global.indexphase = "home"
|
||||
global.recipeindex = 11
|
||||
}
|
||||
else if (global.recipemode == "classy")
|
||||
{
|
||||
global.indexphase = "home"
|
||||
global.recipeindex = 7
|
||||
}
|
||||
else if (global.recipemode == "promo")
|
||||
{
|
||||
global.indexphase = "home"
|
||||
global.recipeindex = 24
|
||||
}
|
||||
else if (global.recipemode == "c")
|
||||
{
|
||||
global.indexphase = "home"
|
||||
global.recipeindex = 16
|
||||
}
|
||||
else if (global.recipemode == "f")
|
||||
{
|
||||
global.indexphase = "home"
|
||||
global.recipeindex = 24
|
||||
}
|
||||
else if (global.recipemode == "g")
|
||||
{
|
||||
global.indexphase = "home"
|
||||
global.recipeindex = 3
|
||||
}
|
||||
else if (global.recipemode == "m")
|
||||
{
|
||||
global.indexphase = "home"
|
||||
global.recipeindex = 18
|
||||
}
|
||||
else if (global.recipemode == "p")
|
||||
{
|
||||
global.indexphase = "home"
|
||||
global.recipeindex = 22
|
||||
}
|
||||
else if (global.recipemode == "s")
|
||||
{
|
||||
global.indexphase = "home"
|
||||
global.recipeindex = 12
|
||||
}
|
7
gml_Object_ba4_Mouse_10.gml
Normal file
7
gml_Object_ba4_Mouse_10.gml
Normal file
@ -0,0 +1,7 @@
|
||||
hover = 1
|
||||
if ((!hoversound) && global.recipemode != "index" && global.indexphase != "ex" && global.recipemode != "spicy" && global.recipemode != "classic" && global.recipemode != "b" && global.recipemode != "f" && global.recipemode != "g" && global.recipemode != "s" && global.recipemode != "z")
|
||||
{
|
||||
hoversound = 1
|
||||
audio_play_sound(mouse_hover, 1, false)
|
||||
audio_sound_gain(mouse_hover, ((global.sfxvolume - 20) / 100), 0)
|
||||
}
|
65
gml_Object_ba4_Mouse_7.gml
Normal file
65
gml_Object_ba4_Mouse_7.gml
Normal file
@ -0,0 +1,65 @@
|
||||
if (global.recipemode != "index" && global.indexphase != "ex" && global.recipemode != "spicy" && global.recipemode != "classic" && global.recipemode != "b" && global.recipemode != "f" && global.recipemode != "g" && global.recipemode != "s" && global.recipemode != "z")
|
||||
{
|
||||
audio_play_sound(jukechange, 1, false)
|
||||
audio_sound_gain(jukechange, ((global.sfxvolume - 20) / 100), 0)
|
||||
}
|
||||
if (global.recipemode == "sweet")
|
||||
{
|
||||
global.indexphase = "home"
|
||||
global.recipeindex = 16
|
||||
}
|
||||
else if (global.recipemode == "bitter")
|
||||
{
|
||||
global.indexphase = "home"
|
||||
global.recipeindex = 23
|
||||
}
|
||||
else if (global.recipemode == "sour")
|
||||
{
|
||||
global.indexphase = "home"
|
||||
global.recipeindex = 15
|
||||
}
|
||||
else if (global.recipemode == "bubbly")
|
||||
{
|
||||
global.indexphase = "home"
|
||||
global.recipeindex = 10
|
||||
}
|
||||
else if (global.recipemode == "girly")
|
||||
{
|
||||
global.indexphase = "home"
|
||||
global.recipeindex = 9
|
||||
}
|
||||
else if (global.recipemode == "manly")
|
||||
{
|
||||
global.indexphase = "home"
|
||||
global.recipeindex = 14
|
||||
}
|
||||
else if (global.recipemode == "classy")
|
||||
{
|
||||
global.indexphase = "home"
|
||||
global.recipeindex = 10
|
||||
}
|
||||
else if (global.recipemode == "promo")
|
||||
{
|
||||
global.indexphase = "home"
|
||||
global.recipeindex = 17
|
||||
}
|
||||
else if (global.recipemode == "c")
|
||||
{
|
||||
global.indexphase = "home"
|
||||
global.recipeindex = 8
|
||||
}
|
||||
else if (global.recipemode == "m")
|
||||
{
|
||||
global.indexphase = "home"
|
||||
global.recipeindex = 9
|
||||
}
|
||||
else if (global.recipemode == "p")
|
||||
{
|
||||
global.indexphase = "home"
|
||||
global.recipeindex = 23
|
||||
}
|
||||
else if (global.recipemode == "s")
|
||||
{
|
||||
global.indexphase = "home"
|
||||
global.recipeindex = 23
|
||||
}
|
7
gml_Object_ba5_Mouse_10.gml
Normal file
7
gml_Object_ba5_Mouse_10.gml
Normal file
@ -0,0 +1,7 @@
|
||||
hover = 1
|
||||
if ((!hoversound) && global.recipemode != "index" && global.indexphase != "ex" && (global.recipemode == "p" || global.recipemode == "sweet" || global.recipemode == "bitter" || global.recipemode == "sour" || global.recipemode == "girly" || global.recipemode == "manly" || global.recipemode == "classy" || global.recipemode == "promo"))
|
||||
{
|
||||
hoversound = 1
|
||||
audio_play_sound(mouse_hover, 1, false)
|
||||
audio_sound_gain(mouse_hover, ((global.sfxvolume - 20) / 100), 0)
|
||||
}
|
45
gml_Object_ba5_Mouse_7.gml
Normal file
45
gml_Object_ba5_Mouse_7.gml
Normal file
@ -0,0 +1,45 @@
|
||||
if (global.recipemode != "index" && global.indexphase != "ex" && (global.recipemode == "p" || global.recipemode == "sweet" || global.recipemode == "bitter" || global.recipemode == "sour" || global.recipemode == "girly" || global.recipemode == "manly" || global.recipemode == "classy" || global.recipemode == "promo"))
|
||||
{
|
||||
audio_play_sound(jukechange, 2, false)
|
||||
audio_sound_gain(jukechange, ((global.sfxvolume - 20) / 100), 0)
|
||||
}
|
||||
if (global.recipemode == "sweet")
|
||||
{
|
||||
global.indexphase = "home"
|
||||
global.recipeindex = 6
|
||||
}
|
||||
else if (global.recipemode == "bitter")
|
||||
{
|
||||
global.indexphase = "home"
|
||||
global.recipeindex = 12
|
||||
}
|
||||
else if (global.recipemode == "sour")
|
||||
{
|
||||
global.indexphase = "home"
|
||||
global.recipeindex = 24
|
||||
}
|
||||
else if (global.recipemode == "girly")
|
||||
{
|
||||
global.indexphase = "home"
|
||||
global.recipeindex = 22
|
||||
}
|
||||
else if (global.recipemode == "manly")
|
||||
{
|
||||
global.indexphase = "home"
|
||||
global.recipeindex = 8
|
||||
}
|
||||
else if (global.recipemode == "classy")
|
||||
{
|
||||
global.indexphase = "home"
|
||||
global.recipeindex = 15
|
||||
}
|
||||
else if (global.recipemode == "promo")
|
||||
{
|
||||
global.indexphase = "home"
|
||||
global.recipeindex = 18
|
||||
}
|
||||
else if (global.recipemode == "p")
|
||||
{
|
||||
global.indexphase = "home"
|
||||
global.recipeindex = 20
|
||||
}
|
7
gml_Object_ba6_Mouse_10.gml
Normal file
7
gml_Object_ba6_Mouse_10.gml
Normal file
@ -0,0 +1,7 @@
|
||||
hover = 1
|
||||
if ((!hoversound) && global.recipemode != "index" && global.indexphase != "ex" && (global.recipemode == "girly" || global.recipemode == "sweet"))
|
||||
{
|
||||
hoversound = 1
|
||||
audio_play_sound(mouse_hover, 1, false)
|
||||
audio_sound_gain(mouse_hover, ((global.sfxvolume - 20) / 100), 0)
|
||||
}
|
15
gml_Object_ba6_Mouse_7.gml
Normal file
15
gml_Object_ba6_Mouse_7.gml
Normal file
@ -0,0 +1,15 @@
|
||||
if (global.recipemode != "index" && global.indexphase != "ex" && global.recipemode != "b" && (global.recipemode == "girly" || global.recipemode == "sweet"))
|
||||
{
|
||||
audio_play_sound(jukechange, 1, false)
|
||||
audio_sound_gain(jukechange, ((global.sfxvolume - 20) / 100), 0)
|
||||
}
|
||||
if (global.recipemode == "sweet")
|
||||
{
|
||||
global.indexphase = "home"
|
||||
global.recipeindex = 18
|
||||
}
|
||||
else if (global.recipemode == "girly")
|
||||
{
|
||||
global.indexphase = "home"
|
||||
global.recipeindex = 16
|
||||
}
|
3
gml_Object_bc8_Mouse_7.gml
Normal file
3
gml_Object_bc8_Mouse_7.gml
Normal file
@ -0,0 +1,3 @@
|
||||
if (global.recipemode != "z" && global.indexphase != "home")
|
||||
{
|
||||
}
|
371
gml_Object_textx_Draw_0.gml
Normal file
371
gml_Object_textx_Draw_0.gml
Normal file
@ -0,0 +1,371 @@
|
||||
if (global.language == "jp")
|
||||
draw_set_font(jpdialog4)
|
||||
else if (global.language == "ch")
|
||||
draw_set_font(ch_small)
|
||||
else if (global.language == "kor")
|
||||
draw_set_font(kor_fontsm)
|
||||
else if (global.language == "rus")
|
||||
draw_set_font(rusfontsm)
|
||||
else
|
||||
draw_set_font(recipefont3)
|
||||
if (global.indexphase == "name")
|
||||
draw_set_color(c_white)
|
||||
else if introbutton_a.hover
|
||||
draw_set_color(c_white)
|
||||
else
|
||||
draw_set_color(c_black)
|
||||
draw_text((introbutton_a.x + 2), (introbutton_a.y + btyoffset), string(global.byname_str))
|
||||
if (global.indexphase == "flavor")
|
||||
draw_set_color(c_white)
|
||||
else if introbutton_b.hover
|
||||
draw_set_color(c_white)
|
||||
else
|
||||
draw_set_color(c_black)
|
||||
draw_text((introbutton_b.x + 2), (introbutton_a.y + btyoffset), string(global.byflavor_str))
|
||||
if (global.indexphase == "type")
|
||||
draw_set_color(c_white)
|
||||
else if introbutton_c.hover
|
||||
draw_set_color(c_white)
|
||||
else
|
||||
draw_set_color(c_black)
|
||||
draw_text((introbutton_c.x + 2), (introbutton_a.y + btyoffset), string(global.bytype_str))
|
||||
if (global.indexphase == "ex")
|
||||
draw_set_color(c_white)
|
||||
else if introbutton_d.hover
|
||||
draw_set_color(c_white)
|
||||
else
|
||||
draw_set_color(c_black)
|
||||
draw_text((introbutton_d.x + 2), (introbutton_a.y + btyoffset), string(global.bottleddrinks_str))
|
||||
if (global.indexphase == "home" && global.recipeindex == 0)
|
||||
{
|
||||
if (global.cur_day == 11 && global.cur_stage >= 8)
|
||||
draw_sprite(introalma, -1, (recipebook.x + 4), (recipebook.y + 15))
|
||||
else
|
||||
draw_sprite(intro, -1, (recipebook.x + 4), (recipebook.y + 15))
|
||||
}
|
||||
draw_set_color(c_white)
|
||||
if (global.language == "jp")
|
||||
draw_set_font(jpdialog2)
|
||||
else if (global.language == "ch")
|
||||
draw_set_font(ch_small)
|
||||
else if (global.language == "kor")
|
||||
draw_set_font(kor_fontsm)
|
||||
else if (global.language == "rus")
|
||||
draw_set_font(rusfontsm)
|
||||
else
|
||||
draw_set_font(recipefont4)
|
||||
if (global.indexphase == "name")
|
||||
{
|
||||
draw_text((x + 25), (y + 45), string(global.searchbyname_str))
|
||||
if (global.recipemode == "b")
|
||||
draw_set_color(c_white)
|
||||
else if bc1.hover
|
||||
draw_set_color(c_white)
|
||||
else
|
||||
draw_set_color(c_gray)
|
||||
draw_text((bc1.x + 20), (bc1.y + 4), string(global.b_str))
|
||||
if (global.recipemode == "c")
|
||||
draw_set_color(c_white)
|
||||
else if bc2.hover
|
||||
draw_set_color(c_white)
|
||||
else
|
||||
draw_set_color(c_gray)
|
||||
draw_text((bc2.x + 20), (bc2.y + 4), string(global.c_str))
|
||||
if (global.recipemode == "f")
|
||||
draw_set_color(c_white)
|
||||
else if bc3.hover
|
||||
draw_set_color(c_white)
|
||||
else
|
||||
draw_set_color(c_gray)
|
||||
draw_text((bc3.x + 20), (bc3.y + 4), string(global.f_str))
|
||||
if (global.recipemode == "g")
|
||||
draw_set_color(c_white)
|
||||
else if bc4.hover
|
||||
draw_set_color(c_white)
|
||||
else
|
||||
draw_set_color(c_gray)
|
||||
draw_text((bc4.x + 20), (bc4.y + 4), string(global.g_str))
|
||||
if (global.recipemode == "m")
|
||||
draw_set_color(c_white)
|
||||
else if bc5.hover
|
||||
draw_set_color(c_white)
|
||||
else
|
||||
draw_set_color(c_gray)
|
||||
draw_text((bc5.x + 20), (bc5.y + 4), string(global.m_str))
|
||||
if (global.recipemode == "p")
|
||||
draw_set_color(c_white)
|
||||
else if bc6.hover
|
||||
draw_set_color(c_white)
|
||||
else
|
||||
draw_set_color(c_gray)
|
||||
draw_text((bc6.x + 20), (bc6.y + 4), string(global.p_str))
|
||||
if (global.recipemode == "s")
|
||||
draw_set_color(c_white)
|
||||
else if bc7.hover
|
||||
draw_set_color(c_white)
|
||||
else
|
||||
draw_set_color(c_gray)
|
||||
draw_text((bc7.x + 20), (bc7.y + 4), string(global.s_str))
|
||||
}
|
||||
else if (global.indexphase == "flavor")
|
||||
{
|
||||
draw_text((x + 25), (y + 45), string(global.searchbyflavor_str))
|
||||
if (global.recipemode == "sweet")
|
||||
draw_set_color(c_white)
|
||||
else if bb1.hover
|
||||
draw_set_color(c_white)
|
||||
else
|
||||
draw_set_color(c_gray)
|
||||
draw_text((bb1.x + 5), (bb1.y + 4), string(global.sweetdrinks_str))
|
||||
if (global.recipemode == "bitter")
|
||||
draw_set_color(c_white)
|
||||
else if bb2.hover
|
||||
draw_set_color(c_white)
|
||||
else
|
||||
draw_set_color(c_gray)
|
||||
draw_text((bb2.x + 5), (bb2.y + 4), string(global.bitterdrinks_str))
|
||||
if (global.recipemode == "sour")
|
||||
draw_set_color(c_white)
|
||||
else if bb3.hover
|
||||
draw_set_color(c_white)
|
||||
else
|
||||
draw_set_color(c_gray)
|
||||
draw_text((bb3.x + 5), (bb3.y + 4), string(global.sourdrinks_str))
|
||||
if (global.recipemode == "spicy")
|
||||
draw_set_color(c_white)
|
||||
else if bb4.hover
|
||||
draw_set_color(c_white)
|
||||
else
|
||||
draw_set_color(c_gray)
|
||||
draw_text((bb4.x + 5), (bb4.y + 4), string(global.spicydrinks_str))
|
||||
if (global.recipemode == "bubbly")
|
||||
draw_set_color(c_white)
|
||||
else if bb5.hover
|
||||
draw_set_color(c_white)
|
||||
else
|
||||
draw_set_color(c_gray)
|
||||
draw_text((bb5.x + 5), (bb5.y + 4), string(global.bubblydrinks_str))
|
||||
}
|
||||
else if (global.indexphase == "type")
|
||||
{
|
||||
draw_text((x + 25), (y + 45), string(global.searchbytype_str))
|
||||
if (global.recipemode == "girly")
|
||||
draw_set_color(c_white)
|
||||
else if bb1.hover
|
||||
draw_set_color(c_white)
|
||||
else
|
||||
draw_set_color(c_gray)
|
||||
draw_text((bb1.x + 5), (bb1.y + 4), string(global.girlydrinks_str))
|
||||
if (global.recipemode == "manly")
|
||||
draw_set_color(c_white)
|
||||
else if bb2.hover
|
||||
draw_set_color(c_white)
|
||||
else
|
||||
draw_set_color(c_gray)
|
||||
draw_text((bb2.x + 5), (bb2.y + 4), string(global.manlydrinks_str))
|
||||
if (global.recipemode == "classic")
|
||||
draw_set_color(c_white)
|
||||
else if bb3.hover
|
||||
draw_set_color(c_white)
|
||||
else
|
||||
draw_set_color(c_gray)
|
||||
draw_text((bb3.x + 5), (bb3.y + 4), string(global.classicdrinks_str))
|
||||
if (global.recipemode == "classy")
|
||||
draw_set_color(c_white)
|
||||
else if bb4.hover
|
||||
draw_set_color(c_white)
|
||||
else
|
||||
draw_set_color(c_gray)
|
||||
draw_text((bb4.x + 5), (bb4.y + 4), string(global.classydrinks_str))
|
||||
if (global.recipemode == "promo")
|
||||
draw_set_color(c_white)
|
||||
else if bb5.hover
|
||||
draw_set_color(c_white)
|
||||
else
|
||||
draw_set_color(c_gray)
|
||||
draw_text((bb5.x + 5), (bb5.y + 4), string(global.promodrinks_str))
|
||||
}
|
||||
else if (global.indexphase == "ex")
|
||||
{
|
||||
}
|
||||
if (global.indexphase != "home")
|
||||
{
|
||||
if (global.indexphase == "ex")
|
||||
{
|
||||
}
|
||||
else
|
||||
{
|
||||
if ba1.hover
|
||||
draw_set_color(c_white)
|
||||
else
|
||||
draw_set_color(c_gray)
|
||||
if (global.recipemode == "sweet")
|
||||
draw_text((ba1.x + 5), (ba1.y + 3), string(global.sugarrush_str))
|
||||
else if (global.recipemode == "bitter")
|
||||
draw_text((ba1.x + 5), (ba1.y + 3), string(global.sunshinecloud_str))
|
||||
else if (global.recipemode == "sour")
|
||||
draw_text((ba1.x + 5), (ba1.y + 3), string(global.fluffydream_str))
|
||||
else if (global.recipemode == "spicy")
|
||||
draw_text((ba1.x + 5), (ba1.y + 3), string(global.marsblast_str))
|
||||
else if (global.recipemode == "bubbly")
|
||||
draw_text((ba1.x + 5), (ba1.y + 3), string(global.beer_str))
|
||||
else if (global.recipemode == "girly")
|
||||
draw_text((ba1.x + 5), (ba1.y + 3), string(global.sugarrush_str))
|
||||
else if (global.recipemode == "manly")
|
||||
draw_text((ba1.x + 5), (ba1.y + 3), string(global.gutpunch_str))
|
||||
else if (global.recipemode == "classic")
|
||||
draw_text((ba1.x + 5), (ba1.y + 3), string(global.beer_str))
|
||||
else if (global.recipemode == "classy")
|
||||
draw_text((ba1.x + 5), (ba1.y + 3), string(global.badtouch_str))
|
||||
else if (global.recipemode == "promo")
|
||||
draw_text((ba1.x + 5), (ba1.y + 3), string(global.grizzlytemple_str))
|
||||
else if (global.recipemode == "b")
|
||||
draw_text((ba1.x + 5), (ba1.y + 3), string(global.bluefairy_str))
|
||||
else if (global.recipemode == "c")
|
||||
draw_text((ba1.x + 5), (ba1.y + 3), string(global.marsblast_str))
|
||||
else if (global.recipemode == "f")
|
||||
draw_text((ba1.x + 5), (ba1.y + 3), string(global.piledriver_str))
|
||||
else if (global.recipemode == "g")
|
||||
draw_text((ba1.x + 5), (ba1.y + 3), string(global.bloomlight_str))
|
||||
else if (global.recipemode == "m")
|
||||
draw_text((ba1.x + 5), (ba1.y + 3), string(global.beer_str))
|
||||
else if (global.recipemode == "p")
|
||||
draw_text((ba1.x + 5), (ba1.y + 3), string(global.cobaltvelvet_str))
|
||||
else if (global.recipemode == "s")
|
||||
draw_text((ba1.x + 5), (ba1.y + 3), string(global.badtouch_str))
|
||||
if ba2.hover
|
||||
draw_set_color(c_white)
|
||||
else
|
||||
draw_set_color(c_gray)
|
||||
if (global.recipemode == "sweet")
|
||||
draw_text((ba2.x + 5), (ba2.y + 3), string(global.sparklestar_str))
|
||||
else if (global.recipemode == "bitter")
|
||||
draw_text((ba2.x + 5), (ba2.y + 3), string(global.gutpunch_str))
|
||||
else if (global.recipemode == "sour")
|
||||
draw_text((ba2.x + 5), (ba2.y + 3), string(global.crevicespike_str))
|
||||
else if (global.recipemode == "spicy")
|
||||
draw_text((ba2.x + 5), (ba2.y + 3), string(global.bleedingjane_str))
|
||||
else if (global.recipemode == "bubbly")
|
||||
draw_text((ba2.x + 5), (ba2.y + 3), string(global.frothywater_str))
|
||||
else if (global.recipemode == "girly")
|
||||
draw_text((ba2.x + 5), (ba2.y + 3), string(global.sparklestar_str))
|
||||
else if (global.recipemode == "manly")
|
||||
draw_text((ba2.x + 5), (ba2.y + 3), string(global.piledriver_str))
|
||||
else if (global.recipemode == "classic")
|
||||
draw_text((ba2.x + 5), (ba2.y + 3), string(global.bleedingjane_str))
|
||||
else if (global.recipemode == "classy")
|
||||
draw_text((ba2.x + 5), (ba2.y + 3), string(global.brandtini_str))
|
||||
else if (global.recipemode == "promo")
|
||||
draw_text((ba2.x + 5), (ba2.y + 3), string(global.bloomlight_str))
|
||||
else if (global.recipemode == "b")
|
||||
draw_text((ba2.x + 5), (ba2.y + 3), string(global.brandtini_str))
|
||||
else if (global.recipemode == "c")
|
||||
draw_text((ba2.x + 5), (ba2.y + 3), string(global.mercuryblast_str))
|
||||
else if (global.recipemode == "f")
|
||||
draw_text((ba2.x + 5), (ba2.y + 3), string(global.frothywater_str))
|
||||
else if (global.recipemode == "g")
|
||||
draw_text((ba2.x + 5), (ba2.y + 3), string(global.gutpunch_str))
|
||||
else if (global.recipemode == "m")
|
||||
draw_text((ba2.x + 5), (ba2.y + 3), string(global.pianoman_str))
|
||||
else if (global.recipemode == "p")
|
||||
draw_text((ba2.x + 5), (ba2.y + 3), string(global.sugarrush_str))
|
||||
else if (global.recipemode == "s")
|
||||
draw_text((ba2.x + 5), (ba2.y + 3), string(global.fringeweaver_str))
|
||||
if ba3.hover
|
||||
draw_set_color(c_white)
|
||||
else
|
||||
draw_set_color(c_gray)
|
||||
if (global.recipemode == "sweet")
|
||||
draw_text((ba3.x + 5), (ba3.y + 3), string(global.bluefairy_str))
|
||||
else if (global.recipemode == "bitter")
|
||||
draw_text((ba3.x + 5), (ba3.y + 3), string(global.piledriver_str))
|
||||
else if (global.recipemode == "sour")
|
||||
draw_text((ba3.x + 5), (ba3.y + 3), string(global.badtouch_str))
|
||||
else if (global.recipemode == "spicy")
|
||||
draw_text((ba3.x + 5), (ba3.y + 3), string(global.bloomlight_str))
|
||||
else if (global.recipemode == "bubbly")
|
||||
draw_text((ba3.x + 5), (ba3.y + 3), string(global.cobaltvelvet_str))
|
||||
else if (global.recipemode == "girly")
|
||||
draw_text((ba3.x + 5), (ba3.y + 3), string(global.bluefairy_str))
|
||||
else if (global.recipemode == "manly")
|
||||
draw_text((ba3.x + 5), (ba3.y + 3), string(global.suplex_str))
|
||||
else if (global.recipemode == "classic")
|
||||
draw_text((ba3.x + 5), (ba3.y + 3), string(global.frothywater_str))
|
||||
else if (global.recipemode == "classy")
|
||||
draw_text((ba3.x + 5), (ba3.y + 3), string(global.cobaltvelvet_str))
|
||||
else if (global.recipemode == "promo")
|
||||
draw_text((ba3.x + 5), (ba3.y + 3), string(global.zenstar_str))
|
||||
else if (global.recipemode == "c")
|
||||
draw_text((ba3.x + 5), (ba3.y + 3), string(global.moonblast_str))
|
||||
else if (global.recipemode == "f")
|
||||
draw_text((ba3.x + 5), (ba3.y + 3), string(global.zenstar_str))
|
||||
else if (global.recipemode == "g")
|
||||
draw_text((ba3.x + 5), (ba3.y + 3), string(global.bleedingjane_str))
|
||||
else if (global.recipemode == "m")
|
||||
draw_text((ba3.x + 5), (ba3.y + 3), string(global.pianowoman_str))
|
||||
else if (global.recipemode == "p")
|
||||
draw_text((ba3.x + 5), (ba3.y + 3), string(global.sunshinecloud_str))
|
||||
else if (global.recipemode == "s")
|
||||
draw_text((ba3.x + 5), (ba3.y + 3), string(global.grizzlytemple_str))
|
||||
if ba4.hover
|
||||
draw_set_color(c_white)
|
||||
else
|
||||
draw_set_color(c_gray)
|
||||
if (global.recipemode == "sweet")
|
||||
draw_text((ba4.x + 5), (ba4.y + 3), string(global.moonblast_str))
|
||||
else if (global.recipemode == "bitter")
|
||||
draw_text((ba4.x + 5), (ba4.y + 3), string(global.suplex_str))
|
||||
else if (global.recipemode == "sour")
|
||||
draw_text((ba4.x + 5), (ba4.y + 3), string(global.mercuryblast_str))
|
||||
else if (global.recipemode == "bubbly")
|
||||
draw_text((ba4.x + 5), (ba4.y + 3), string(global.fringeweaver_str))
|
||||
else if (global.recipemode == "girly")
|
||||
draw_text((ba4.x + 5), (ba4.y + 3), string(global.fluffydream_str))
|
||||
else if (global.recipemode == "manly")
|
||||
draw_text((ba4.x + 5), (ba4.y + 3), string(global.marsblast_str))
|
||||
else if (global.recipemode == "classy")
|
||||
draw_text((ba4.x + 5), (ba4.y + 3), string(global.fringeweaver_str))
|
||||
else if (global.recipemode == "promo")
|
||||
draw_text((ba4.x + 5), (ba4.y + 3), string(global.pianoman_str))
|
||||
else if (global.recipemode == "c")
|
||||
draw_text((ba4.x + 5), (ba4.y + 3), string(global.crevicespike_str))
|
||||
else if (global.recipemode == "m")
|
||||
draw_text((ba4.x + 5), (ba4.y + 3), string(global.fluffydream_str))
|
||||
else if (global.recipemode == "p")
|
||||
draw_text((ba4.x + 5), (ba4.y + 3), string(global.suplex_str))
|
||||
if ba5.hover
|
||||
draw_set_color(c_white)
|
||||
else
|
||||
draw_set_color(c_gray)
|
||||
if (global.recipemode == "sweet")
|
||||
draw_text((ba5.x + 5), (ba5.y + 3), string(global.brandtini_str))
|
||||
else if (global.recipemode == "bitter")
|
||||
draw_text((ba5.x + 5), (ba5.y + 3), string(global.grizzlytemple_str))
|
||||
else if (global.recipemode == "sour")
|
||||
draw_text((ba5.x + 5), (ba5.y + 3), string(global.zenstar_str))
|
||||
else if (global.recipemode == "girly")
|
||||
draw_text((ba5.x + 5), (ba5.y + 3), string(global.sunshinecloud_str))
|
||||
else if (global.recipemode == "manly")
|
||||
draw_text((ba5.x + 5), (ba5.y + 3), string(global.crevicespike_str))
|
||||
else if (global.recipemode == "classy")
|
||||
draw_text((ba5.x + 5), (ba5.y + 3), string(global.mercuryblast_str))
|
||||
else if (global.recipemode == "promo")
|
||||
draw_text((ba5.x + 5), (ba5.y + 3), string(global.pianowoman_str))
|
||||
else if (global.recipemode == "p")
|
||||
draw_text((ba5.x + 5), (ba5.y + 3), string(global.sparklestar_str))
|
||||
if ba6.hover
|
||||
draw_set_color(c_white)
|
||||
else
|
||||
draw_set_color(c_gray)
|
||||
if (global.recipemode == "sweet")
|
||||
draw_text((ba6.x + 5), (ba6.y + 3), string(global.pianowoman_str))
|
||||
else if (global.recipemode == "girly")
|
||||
draw_text((ba6.x + 5), (ba6.y + 3), string(global.moonblast_str))
|
||||
}
|
||||
}
|
||||
else if (global.recipeindex != 0)
|
||||
{
|
||||
draw_set_halign(fa_center)
|
||||
draw_text(((recipebook_bg.x + 145) + 25), (recipebook_bg.y + 210), (string(drinknumber) + "/24"))
|
||||
draw_set_halign(fa_left)
|
||||
}
|
80
gml_Object_textx_Step_0.gml
Normal file
80
gml_Object_textx_Step_0.gml
Normal file
@ -0,0 +1,80 @@
|
||||
if (!instance_exists(recipebook))
|
||||
instance_destroy()
|
||||
if (global.indexphase != "home")
|
||||
{
|
||||
if (global.indexphase == "ex")
|
||||
{
|
||||
if (!instance_exists(exdrink_text))
|
||||
instance_create(x, y, exdrink_text)
|
||||
if (!instance_exists(exframe_3))
|
||||
instance_create((x + 30), (y + 110), exframe_3)
|
||||
if (global.stel1 == "right" && global.stel2 == "right" && global.cur_day >= 5)
|
||||
{
|
||||
if (!instance_exists(exframe_2))
|
||||
instance_create((x + 170), (y + 40), exframe_2)
|
||||
}
|
||||
else if ((!instance_exists(exframe_1)) && global.cur_day >= 5)
|
||||
instance_create((x + 30), (y + 40), exframe_1)
|
||||
if global.shop_tea
|
||||
{
|
||||
if (!instance_exists(exframe_4))
|
||||
instance_create((x + 170), (y + 110), exframe_4)
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
if (global.indexphase != "name")
|
||||
{
|
||||
if (!instance_exists(bb1))
|
||||
instance_create((x + buttonxoffset), (y + 80), bb1)
|
||||
if (!instance_exists(bb2))
|
||||
instance_create((x + buttonxoffset), (y + 110), bb2)
|
||||
if (!instance_exists(bb3))
|
||||
instance_create((x + buttonxoffset), (y + 140), bb3)
|
||||
if (!instance_exists(bb4))
|
||||
instance_create((x + buttonxoffset), (y + 170), bb4)
|
||||
if (!instance_exists(bb5))
|
||||
instance_create((x + buttonxoffset), (y + 200), bb5)
|
||||
}
|
||||
else
|
||||
{
|
||||
if (!instance_exists(bc1))
|
||||
instance_create(bc1x, bc1y, bc1)
|
||||
if (!instance_exists(bc2))
|
||||
instance_create(bc2x, bc2y, bc2)
|
||||
if (!instance_exists(bc3))
|
||||
instance_create(bc3x, bc3y, bc3)
|
||||
if (!instance_exists(bc4))
|
||||
instance_create(bc4x, bc4y, bc4)
|
||||
if (!instance_exists(bc5))
|
||||
instance_create(bc5x, bc5y, bc5)
|
||||
if (!instance_exists(bc6))
|
||||
instance_create(bc6x, bc6y, bc6)
|
||||
if (!instance_exists(bc7))
|
||||
instance_create(bc7x, bc7y, bc7)
|
||||
}
|
||||
if (!instance_exists(ba1))
|
||||
instance_create((x + dboffset), (y + 50), ba1)
|
||||
if (!instance_exists(ba2))
|
||||
instance_create((x + dboffset), (y + 80), ba2)
|
||||
if (!instance_exists(ba3))
|
||||
instance_create((x + dboffset), (y + 110), ba3)
|
||||
if (!instance_exists(ba4))
|
||||
instance_create((x + dboffset), (y + 140), ba4)
|
||||
if (!instance_exists(ba5))
|
||||
instance_create((x + dboffset), (y + 170), ba5)
|
||||
if (!instance_exists(ba6))
|
||||
instance_create((x + dboffset), (y + 200), ba6)
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
drinknumber = global.recipeindex
|
||||
if (global.recipeindex != 0)
|
||||
{
|
||||
if (!instance_exists(recipe_left))
|
||||
instance_create(x, y, recipe_left)
|
||||
if (!instance_exists(recipe_right))
|
||||
instance_create(x, y, recipe_right)
|
||||
}
|
||||
}
|
375
gml_Object_textx_new_Draw_0.gml
Normal file
375
gml_Object_textx_new_Draw_0.gml
Normal file
@ -0,0 +1,375 @@
|
||||
if (global.language == "jp")
|
||||
draw_set_font(dialogfont_jp3)
|
||||
else if (global.language == "jp")
|
||||
draw_set_font(ch_small)
|
||||
else if (global.language == "kor")
|
||||
draw_set_font(kor_fontsm)
|
||||
else if (global.language == "rus")
|
||||
draw_set_font(rusfontsm)
|
||||
else
|
||||
draw_set_font(recipefont3)
|
||||
if (global.indexphase == "name")
|
||||
draw_set_color(c_white)
|
||||
else if introbutton_a.hover
|
||||
draw_set_color(c_white)
|
||||
else
|
||||
draw_set_color(c_black)
|
||||
draw_text((introbutton_a.x + 2), introbutton_a.y, string(global.byname_str))
|
||||
if (global.indexphase == "flavor")
|
||||
draw_set_color(c_white)
|
||||
else if introbutton_b.hover
|
||||
draw_set_color(c_white)
|
||||
else
|
||||
draw_set_color(c_black)
|
||||
draw_text((introbutton_b.x + 2), introbutton_a.y, string(global.byflavor_str))
|
||||
if (global.indexphase == "type")
|
||||
draw_set_color(c_white)
|
||||
else if introbutton_c.hover
|
||||
draw_set_color(c_white)
|
||||
else
|
||||
draw_set_color(c_black)
|
||||
draw_text((introbutton_c.x + 2), introbutton_a.y, string(global.bytype_str))
|
||||
if (global.indexphase == "ex")
|
||||
draw_set_color(c_white)
|
||||
else if introbutton_d.hover
|
||||
draw_set_color(c_white)
|
||||
else
|
||||
draw_set_color(c_black)
|
||||
draw_text((introbutton_d.x + 2), introbutton_a.y, string(global.bottleddrinks_str))
|
||||
if (global.indexphase == "home" && global.recipeindex == 0)
|
||||
{
|
||||
if (global.cur_day == 11 && global.cur_stage >= 8)
|
||||
draw_sprite(introalma, -1, (recipebook.x + 4), (recipebook.y + 15))
|
||||
else
|
||||
draw_sprite(intro, -1, (recipebook.x + 4), (recipebook.y + 15))
|
||||
}
|
||||
draw_set_color(c_white)
|
||||
if (global.language == "jp")
|
||||
draw_set_font(dialogfont_jp2)
|
||||
else if (global.language == "ch")
|
||||
draw_set_font(ch_small)
|
||||
else if (global.language == "kor")
|
||||
draw_set_font(kor_fontsm)
|
||||
else if (global.language == "rus")
|
||||
draw_set_font(rusfontsm)
|
||||
else
|
||||
draw_set_font(recipefont4)
|
||||
if (global.indexphase == "name")
|
||||
{
|
||||
draw_text((x + 25), (y + 45), string(global.searchbyname_str))
|
||||
if (global.language == "jp")
|
||||
draw_set_font(dialogfont_jp4)
|
||||
if (global.recipemode == "b")
|
||||
draw_set_color(c_white)
|
||||
else if bc1.hover
|
||||
draw_set_color(c_white)
|
||||
else
|
||||
draw_set_color(c_gray)
|
||||
draw_text((bc1.x + 20), (bc1.y + 4), string(global.b_str))
|
||||
if (global.recipemode == "c")
|
||||
draw_set_color(c_white)
|
||||
else if bc2.hover
|
||||
draw_set_color(c_white)
|
||||
else
|
||||
draw_set_color(c_gray)
|
||||
draw_text((bc2.x + 20), (bc2.y + 4), string(global.c_str))
|
||||
if (global.recipemode == "f")
|
||||
draw_set_color(c_white)
|
||||
else if bc3.hover
|
||||
draw_set_color(c_white)
|
||||
else
|
||||
draw_set_color(c_gray)
|
||||
draw_text((bc3.x + 20), (bc3.y + 4), string(global.f_str))
|
||||
if (global.recipemode == "g")
|
||||
draw_set_color(c_white)
|
||||
else if bc4.hover
|
||||
draw_set_color(c_white)
|
||||
else
|
||||
draw_set_color(c_gray)
|
||||
draw_text((bc4.x + 20), (bc4.y + 4), string(global.g_str))
|
||||
if (global.recipemode == "m")
|
||||
draw_set_color(c_white)
|
||||
else if bc5.hover
|
||||
draw_set_color(c_white)
|
||||
else
|
||||
draw_set_color(c_gray)
|
||||
draw_text((bc5.x + 20), (bc5.y + 4), string(global.m_str))
|
||||
if (global.recipemode == "p")
|
||||
draw_set_color(c_white)
|
||||
else if bc6.hover
|
||||
draw_set_color(c_white)
|
||||
else
|
||||
draw_set_color(c_gray)
|
||||
draw_text((bc6.x + 20), (bc6.y + 4), string(global.p_str))
|
||||
if (global.recipemode == "s")
|
||||
draw_set_color(c_white)
|
||||
else if bc7.hover
|
||||
draw_set_color(c_white)
|
||||
else
|
||||
draw_set_color(c_gray)
|
||||
draw_text((bc7.x + 20), (bc7.y + 4), string(global.s_str))
|
||||
}
|
||||
else if (global.indexphase == "flavor")
|
||||
{
|
||||
if (global.language == "jp")
|
||||
draw_set_font(dialogfont_jp2)
|
||||
draw_text((x + 25), (y + 45), string(global.searchbyflavor_str))
|
||||
if (global.language == "jp")
|
||||
draw_set_font(dialogfont_jp4)
|
||||
if (global.recipemode == "sweet")
|
||||
draw_set_color(c_white)
|
||||
else if bb1.hover
|
||||
draw_set_color(c_white)
|
||||
else
|
||||
draw_set_color(c_gray)
|
||||
draw_text((bb1.x + 5), (bb1.y + 4), string(global.sweetdrinks_str))
|
||||
if (global.recipemode == "bitter")
|
||||
draw_set_color(c_white)
|
||||
else if bb2.hover
|
||||
draw_set_color(c_white)
|
||||
else
|
||||
draw_set_color(c_gray)
|
||||
draw_text((bb2.x + 5), (bb2.y + 4), string(global.bitterdrinks_str))
|
||||
if (global.recipemode == "sour")
|
||||
draw_set_color(c_white)
|
||||
else if bb3.hover
|
||||
draw_set_color(c_white)
|
||||
else
|
||||
draw_set_color(c_gray)
|
||||
draw_text((bb3.x + 5), (bb3.y + 4), string(global.sourdrinks_str))
|
||||
if (global.recipemode == "spicy")
|
||||
draw_set_color(c_white)
|
||||
else if bb4.hover
|
||||
draw_set_color(c_white)
|
||||
else
|
||||
draw_set_color(c_gray)
|
||||
draw_text((bb4.x + 5), (bb4.y + 4), string(global.spicydrinks_str))
|
||||
if (global.recipemode == "bubbly")
|
||||
draw_set_color(c_white)
|
||||
else if bb5.hover
|
||||
draw_set_color(c_white)
|
||||
else
|
||||
draw_set_color(c_gray)
|
||||
draw_text((bb5.x + 5), (bb5.y + 4), string(global.bubblydrinks_str))
|
||||
}
|
||||
else if (global.indexphase == "type")
|
||||
{
|
||||
if (global.language == "jp")
|
||||
draw_set_font(dialogfont_jp2)
|
||||
draw_text((x + 25), (y + 45), string(global.searchbytype_str))
|
||||
if (global.language == "jp")
|
||||
draw_set_font(dialogfont_jp4)
|
||||
if (global.recipemode == "girly")
|
||||
draw_set_color(c_white)
|
||||
else if bb1.hover
|
||||
draw_set_color(c_white)
|
||||
else
|
||||
draw_set_color(c_gray)
|
||||
draw_text((bb1.x + 5), (bb1.y + 4), string(global.girlydrinks_str))
|
||||
if (global.recipemode == "manly")
|
||||
draw_set_color(c_white)
|
||||
else if bb2.hover
|
||||
draw_set_color(c_white)
|
||||
else
|
||||
draw_set_color(c_gray)
|
||||
draw_text((bb2.x + 5), (bb2.y + 4), string(global.manlydrinks_str))
|
||||
if (global.recipemode == "classic")
|
||||
draw_set_color(c_white)
|
||||
else if bb3.hover
|
||||
draw_set_color(c_white)
|
||||
else
|
||||
draw_set_color(c_gray)
|
||||
draw_text((bb3.x + 5), (bb3.y + 4), string(global.classicdrinks_str))
|
||||
if (global.recipemode == "classy")
|
||||
draw_set_color(c_white)
|
||||
else if bb4.hover
|
||||
draw_set_color(c_white)
|
||||
else
|
||||
draw_set_color(c_gray)
|
||||
draw_text((bb4.x + 5), (bb4.y + 4), string(global.classydrinks_str))
|
||||
if (global.recipemode == "promo")
|
||||
draw_set_color(c_white)
|
||||
else if bb5.hover
|
||||
draw_set_color(c_white)
|
||||
else
|
||||
draw_set_color(c_gray)
|
||||
draw_text((bb5.x + 5), (bb5.y + 4), string(global.promodrinks_str))
|
||||
}
|
||||
else if (global.indexphase == "ex")
|
||||
{
|
||||
}
|
||||
if (global.indexphase != "home")
|
||||
{
|
||||
if (global.indexphase == "ex")
|
||||
{
|
||||
}
|
||||
else
|
||||
{
|
||||
if ba1.hover
|
||||
draw_set_color(c_white)
|
||||
else
|
||||
draw_set_color(c_gray)
|
||||
if (global.recipemode == "sweet")
|
||||
draw_text((ba1.x + 5), (ba1.y + 3), string(global.sugarrush_str))
|
||||
else if (global.recipemode == "bitter")
|
||||
draw_text((ba1.x + 5), (ba1.y + 3), string(global.sunshinecloud_str))
|
||||
else if (global.recipemode == "sour")
|
||||
draw_text((ba1.x + 5), (ba1.y + 3), string(global.fluffydream_str))
|
||||
else if (global.recipemode == "spicy")
|
||||
draw_text((ba1.x + 5), (ba1.y + 3), string(global.marsblast_str))
|
||||
else if (global.recipemode == "bubbly")
|
||||
draw_text((ba1.x + 5), (ba1.y + 3), string(global.beer_str))
|
||||
else if (global.recipemode == "girly")
|
||||
draw_text((ba1.x + 5), (ba1.y + 3), string(global.sugarrush_str))
|
||||
else if (global.recipemode == "manly")
|
||||
draw_text((ba1.x + 5), (ba1.y + 3), string(global.gutpunch_str))
|
||||
else if (global.recipemode == "classic")
|
||||
draw_text((ba1.x + 5), (ba1.y + 3), string(global.beer_str))
|
||||
else if (global.recipemode == "classy")
|
||||
draw_text((ba1.x + 5), (ba1.y + 3), string(global.badtouch_str))
|
||||
else if (global.recipemode == "promo")
|
||||
draw_text((ba1.x + 5), (ba1.y + 3), string(global.grizzlytemple_str))
|
||||
else if (global.recipemode == "b")
|
||||
draw_text((ba1.x + 5), (ba1.y + 3), string(global.bluefairy_str))
|
||||
else if (global.recipemode == "c")
|
||||
draw_text((ba1.x + 5), (ba1.y + 3), string(global.marsblast_str))
|
||||
else if (global.recipemode == "f")
|
||||
draw_text((ba1.x + 5), (ba1.y + 3), string(global.piledriver_str))
|
||||
else if (global.recipemode == "g")
|
||||
draw_text((ba1.x + 5), (ba1.y + 3), string(global.bloomlight_str))
|
||||
else if (global.recipemode == "m")
|
||||
draw_text((ba1.x + 5), (ba1.y + 3), string(global.beer_str))
|
||||
else if (global.recipemode == "p")
|
||||
draw_text((ba1.x + 5), (ba1.y + 3), string(global.cobaltvelvet_str))
|
||||
else if (global.recipemode == "s")
|
||||
draw_text((ba1.x + 5), (ba1.y + 3), string(global.badtouch_str))
|
||||
if ba2.hover
|
||||
draw_set_color(c_white)
|
||||
else
|
||||
draw_set_color(c_gray)
|
||||
if (global.recipemode == "sweet")
|
||||
draw_text((ba2.x + 5), (ba2.y + 3), string(global.sparklestar_str))
|
||||
else if (global.recipemode == "bitter")
|
||||
draw_text((ba2.x + 5), (ba2.y + 3), string(global.gutpunch_str))
|
||||
else if (global.recipemode == "sour")
|
||||
draw_text((ba2.x + 5), (ba2.y + 3), string(global.crevicespike_str))
|
||||
else if (global.recipemode == "spicy")
|
||||
draw_text((ba2.x + 5), (ba2.y + 3), string(global.bleedingjane_str))
|
||||
else if (global.recipemode == "bubbly")
|
||||
draw_text((ba2.x + 5), (ba2.y + 3), string(global.frothywater_str))
|
||||
else if (global.recipemode == "girly")
|
||||
draw_text((ba2.x + 5), (ba2.y + 3), string(global.sparklestar_str))
|
||||
else if (global.recipemode == "manly")
|
||||
draw_text((ba2.x + 5), (ba2.y + 3), string(global.piledriver_str))
|
||||
else if (global.recipemode == "classic")
|
||||
draw_text((ba2.x + 5), (ba2.y + 3), string(global.bleedingjane_str))
|
||||
else if (global.recipemode == "classy")
|
||||
draw_text((ba2.x + 5), (ba2.y + 3), string(global.brandtini_str))
|
||||
else if (global.recipemode == "promo")
|
||||
draw_text((ba2.x + 5), (ba2.y + 3), string(global.bloomlight_str))
|
||||
else if (global.recipemode == "b")
|
||||
draw_text((ba2.x + 5), (ba2.y + 3), string(global.brandtini_str))
|
||||
else if (global.recipemode == "c")
|
||||
draw_text((ba2.x + 5), (ba2.y + 3), string(global.mercuryblast_str))
|
||||
else if (global.recipemode == "f")
|
||||
draw_text((ba2.x + 5), (ba2.y + 3), string(global.frothywater_str))
|
||||
else if (global.recipemode == "g")
|
||||
draw_text((ba2.x + 5), (ba2.y + 3), string(global.gutpunch_str))
|
||||
else if (global.recipemode == "m")
|
||||
draw_text((ba2.x + 5), (ba2.y + 3), string(global.pianoman_str))
|
||||
else if (global.recipemode == "p")
|
||||
draw_text((ba2.x + 5), (ba2.y + 3), string(global.sugarrush_str))
|
||||
else if (global.recipemode == "s")
|
||||
draw_text((ba2.x + 5), (ba2.y + 3), string(global.fringeweaver_str))
|
||||
if ba3.hover
|
||||
draw_set_color(c_white)
|
||||
else
|
||||
draw_set_color(c_gray)
|
||||
if (global.recipemode == "sweet")
|
||||
draw_text((ba3.x + 5), (ba3.y + 3), string(global.bluefairy_str))
|
||||
else if (global.recipemode == "bitter")
|
||||
draw_text((ba3.x + 5), (ba3.y + 3), string(global.piledriver_str))
|
||||
else if (global.recipemode == "sour")
|
||||
draw_text((ba3.x + 5), (ba3.y + 3), string(global.badtouch_str))
|
||||
else if (global.recipemode == "spicy")
|
||||
draw_text((ba3.x + 5), (ba3.y + 3), string(global.bloomlight_str))
|
||||
else if (global.recipemode == "bubbly")
|
||||
draw_text((ba3.x + 5), (ba3.y + 3), string(global.cobaltvelvet_str))
|
||||
else if (global.recipemode == "girly")
|
||||
draw_text((ba3.x + 5), (ba3.y + 3), string(global.bluefairy_str))
|
||||
else if (global.recipemode == "manly")
|
||||
draw_text((ba3.x + 5), (ba3.y + 3), string(global.suplex_str))
|
||||
else if (global.recipemode == "classic")
|
||||
draw_text((ba3.x + 5), (ba3.y + 3), string(global.frothywater_str))
|
||||
else if (global.recipemode == "classy")
|
||||
draw_text((ba3.x + 5), (ba3.y + 3), string(global.cobaltvelvet_str))
|
||||
else if (global.recipemode == "promo")
|
||||
draw_text((ba3.x + 5), (ba3.y + 3), string(global.zenstar_str))
|
||||
else if (global.recipemode == "c")
|
||||
draw_text((ba3.x + 5), (ba3.y + 3), string(global.moonblast_str))
|
||||
else if (global.recipemode == "f")
|
||||
draw_text((ba3.x + 5), (ba3.y + 3), string(global.zenstar_str))
|
||||
else if (global.recipemode == "g")
|
||||
draw_text((ba3.x + 5), (ba3.y + 3), string(global.bleedingjane_str))
|
||||
else if (global.recipemode == "m")
|
||||
draw_text((ba3.x + 5), (ba3.y + 3), string(global.pianowoman_str))
|
||||
else if (global.recipemode == "p")
|
||||
draw_text((ba3.x + 5), (ba3.y + 3), string(global.sunshinecloud_str))
|
||||
else if (global.recipemode == "s")
|
||||
draw_text((ba3.x + 5), (ba3.y + 3), string(global.grizzlytemple_str))
|
||||
if ba4.hover
|
||||
draw_set_color(c_white)
|
||||
else
|
||||
draw_set_color(c_gray)
|
||||
if (global.recipemode == "sweet")
|
||||
draw_text((ba4.x + 5), (ba4.y + 3), string(global.moonblast_str))
|
||||
else if (global.recipemode == "bitter")
|
||||
draw_text((ba4.x + 5), (ba4.y + 3), string(global.suplex_str))
|
||||
else if (global.recipemode == "sour")
|
||||
draw_text((ba4.x + 5), (ba4.y + 3), string(global.mercuryblast_str))
|
||||
else if (global.recipemode == "bubbly")
|
||||
draw_text((ba4.x + 5), (ba4.y + 3), string(global.fringeweaver_str))
|
||||
else if (global.recipemode == "girly")
|
||||
draw_text((ba4.x + 5), (ba4.y + 3), string(global.fluffydream_str))
|
||||
else if (global.recipemode == "manly")
|
||||
draw_text((ba4.x + 5), (ba4.y + 3), string(global.marsblast_str))
|
||||
else if (global.recipemode == "classy")
|
||||
draw_text((ba4.x + 5), (ba4.y + 3), string(global.fringeweaver_str))
|
||||
else if (global.recipemode == "promo")
|
||||
draw_text((ba4.x + 5), (ba4.y + 3), string(global.pianoman_str))
|
||||
else if (global.recipemode == "c")
|
||||
draw_text((ba4.x + 5), (ba4.y + 3), string(global.crevicespike_str))
|
||||
else if (global.recipemode == "m")
|
||||
draw_text((ba4.x + 5), (ba4.y + 3), string(global.fluffydream_str))
|
||||
else if (global.recipemode == "p")
|
||||
draw_text((ba4.x + 5), (ba4.y + 3), string(global.suplex_str))
|
||||
if ba5.hover
|
||||
draw_set_color(c_white)
|
||||
else
|
||||
draw_set_color(c_gray)
|
||||
if (global.recipemode == "sweet")
|
||||
draw_text((ba5.x + 5), (ba5.y + 3), string(global.brandtini_str))
|
||||
else if (global.recipemode == "bitter")
|
||||
draw_text((ba5.x + 5), (ba5.y + 3), string(global.grizzlytemple_str))
|
||||
else if (global.recipemode == "sour")
|
||||
draw_text((ba5.x + 5), (ba5.y + 3), string(global.zenstar_str))
|
||||
else if (global.recipemode == "girly")
|
||||
draw_text((ba5.x + 5), (ba5.y + 3), string(global.sunshinecloud_str))
|
||||
else if (global.recipemode == "manly")
|
||||
draw_text((ba5.x + 5), (ba5.y + 3), string(global.crevicespike_str))
|
||||
else if (global.recipemode == "classy")
|
||||
draw_text((ba5.x + 5), (ba5.y + 3), string(global.mercuryblast_str))
|
||||
else if (global.recipemode == "promo")
|
||||
draw_text((ba5.x + 5), (ba5.y + 3), string(global.pianowoman_str))
|
||||
else if (global.recipemode == "p")
|
||||
draw_text((ba5.x + 5), (ba5.y + 3), string(global.sparklestar_str))
|
||||
if ba6.hover
|
||||
draw_set_color(c_white)
|
||||
else
|
||||
draw_set_color(c_gray)
|
||||
if (global.recipemode == "sweet")
|
||||
draw_text((ba6.x + 5), (ba6.y + 3), string(global.pianowoman_str))
|
||||
else if (global.recipemode == "girly")
|
||||
draw_text((ba6.x + 5), (ba6.y + 3), string(global.moonblast_str))
|
||||
}
|
||||
}
|
69
gml_Object_textx_new_Step_0.gml
Normal file
69
gml_Object_textx_new_Step_0.gml
Normal file
@ -0,0 +1,69 @@
|
||||
if (!instance_exists(recipebook))
|
||||
instance_destroy()
|
||||
if (global.indexphase != "home")
|
||||
{
|
||||
if (global.indexphase == "ex")
|
||||
{
|
||||
if (!instance_exists(exdrink_text))
|
||||
instance_create(x, y, exdrink_text)
|
||||
if (!instance_exists(exframe_3))
|
||||
instance_create((x + 30), (y + 110), exframe_3)
|
||||
if (global.stel1 == "right" && global.stel2 == "right" && global.cur_day >= 5)
|
||||
{
|
||||
if (!instance_exists(exframe_2))
|
||||
instance_create((x + 170), (y + 40), exframe_2)
|
||||
}
|
||||
else if ((!instance_exists(exframe_1)) && global.cur_day >= 5)
|
||||
instance_create((x + 30), (y + 40), exframe_1)
|
||||
if global.shop_tea
|
||||
{
|
||||
if (!instance_exists(exframe_4))
|
||||
instance_create((x + 170), (y + 110), exframe_4)
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
if (global.indexphase != "name")
|
||||
{
|
||||
if (!instance_exists(bb1))
|
||||
instance_create((x + buttonxoffset), (y + 80), bb1)
|
||||
if (!instance_exists(bb2))
|
||||
instance_create((x + buttonxoffset), (y + 110), bb2)
|
||||
if (!instance_exists(bb3))
|
||||
instance_create((x + buttonxoffset), (y + 140), bb3)
|
||||
if (!instance_exists(bb4))
|
||||
instance_create((x + buttonxoffset), (y + 170), bb4)
|
||||
if (!instance_exists(bb5))
|
||||
instance_create((x + buttonxoffset), (y + 200), bb5)
|
||||
}
|
||||
else
|
||||
{
|
||||
if (!instance_exists(bc1))
|
||||
instance_create(bc1x, bc1y, bc1)
|
||||
if (!instance_exists(bc2))
|
||||
instance_create(bc2x, bc2y, bc2)
|
||||
if (!instance_exists(bc3))
|
||||
instance_create(bc3x, bc3y, bc3)
|
||||
if (!instance_exists(bc4))
|
||||
instance_create(bc4x, bc4y, bc4)
|
||||
if (!instance_exists(bc5))
|
||||
instance_create(bc5x, bc5y, bc5)
|
||||
if (!instance_exists(bc6))
|
||||
instance_create(bc6x, bc6y, bc6)
|
||||
if (!instance_exists(bc7))
|
||||
instance_create(bc7x, bc7y, bc7)
|
||||
}
|
||||
if (!instance_exists(ba1))
|
||||
instance_create((x + 190), (y + 50), ba1)
|
||||
if (!instance_exists(ba2))
|
||||
instance_create((x + 190), (y + 80), ba2)
|
||||
if (!instance_exists(ba3))
|
||||
instance_create((x + 190), (y + 110), ba3)
|
||||
if (!instance_exists(ba4))
|
||||
instance_create((x + 190), (y + 140), ba4)
|
||||
if (!instance_exists(ba5))
|
||||
instance_create((x + 190), (y + 170), ba5)
|
||||
if (!instance_exists(ba6))
|
||||
instance_create((x + 190), (y + 200), ba6)
|
||||
}
|
||||
}
|
821
gml_Script_drink_a.gml
Normal file
821
gml_Script_drink_a.gml
Normal file
@ -0,0 +1,821 @@
|
||||
if (global.exdrink_a != "")
|
||||
{
|
||||
if (global.exdrink_a == "abs")
|
||||
{
|
||||
global.bev_a = "Абсент"
|
||||
global.bevid_a = "abs"
|
||||
global.flavor_a = "sour"
|
||||
global.kind_a = "classic"
|
||||
global.drinksize_a = "normal"
|
||||
global.alcohol_a = "yes"
|
||||
global.drinkscore_a = 500
|
||||
drinksprite_a.spriteshown = 182
|
||||
exit
|
||||
}
|
||||
if (global.exdrink_a == "rum")
|
||||
{
|
||||
global.bev_a = "Ром"
|
||||
global.bevid_a = "rum"
|
||||
global.flavor_a = "bitter"
|
||||
global.kind_a = "classic"
|
||||
global.drinksize_a = "normal"
|
||||
global.alcohol_a = "yes"
|
||||
global.drinkscore_a = 500
|
||||
drinksprite_a.spriteshown = 181
|
||||
exit
|
||||
}
|
||||
if (global.exdrink_a == "tea")
|
||||
{
|
||||
global.bev_a = "Чай"
|
||||
global.bevid_a = "tea"
|
||||
global.flavor_a = "sweet"
|
||||
global.kind_a = "classic"
|
||||
global.drinksize_a = "normal"
|
||||
global.alcohol_a = "yes"
|
||||
global.drinkscore_a = 500
|
||||
drinksprite_a.spriteshown = 180
|
||||
exit
|
||||
}
|
||||
if (global.exdrink_a == "fed")
|
||||
{
|
||||
global.bev_a = "Слива"
|
||||
global.bevid_a = "fed"
|
||||
global.flavor_a = "bubbly"
|
||||
global.kind_a = "classic"
|
||||
global.drinksize_a = "normal"
|
||||
global.alcohol_a = "yes"
|
||||
global.drinkscore_a = 500
|
||||
drinksprite_a.spriteshown = 183
|
||||
exit
|
||||
}
|
||||
}
|
||||
else if (global.mod_aa == 1 && global.mod_ba == 1 && global.mod_ca == 2 && global.mod_da == 3 && global.mod_ea == 5 && global.mixed_a && (!global.age_a) && (!global.otr_a) && (!global.failed_a))
|
||||
{
|
||||
global.bev_a = "Flmng Moai"
|
||||
global.bevid_a = "fmoai"
|
||||
global.flavor_a = "spicy"
|
||||
global.kind_a = "classy"
|
||||
global.drinksize_a = "big"
|
||||
global.alcohol_a = "yes"
|
||||
global.drinkscore_a = 150
|
||||
global.ft_any = 1
|
||||
if (global.cur_day == 3)
|
||||
{
|
||||
if (global.cur_client == 1)
|
||||
global.ft_alma = 1
|
||||
if (global.cur_client == 3)
|
||||
global.ft_stella = 1
|
||||
}
|
||||
if (global.cur_day == 5)
|
||||
{
|
||||
if (global.cur_client == 1)
|
||||
{
|
||||
if (global.cur_stage >= 20)
|
||||
global.ft_alma = 1
|
||||
}
|
||||
}
|
||||
if (global.cur_day == 7)
|
||||
{
|
||||
if (global.cur_client == 2)
|
||||
global.ft_stella = 1
|
||||
}
|
||||
if (global.cur_day == 10)
|
||||
{
|
||||
if (global.cur_client == 10)
|
||||
{
|
||||
if (global.cur_stage == 2)
|
||||
global.ft_stella = 1
|
||||
}
|
||||
}
|
||||
if (global.cur_day == 11)
|
||||
{
|
||||
if (global.cur_client == 3)
|
||||
{
|
||||
if (global.cur_stage <= 7)
|
||||
global.ft_alma = 1
|
||||
}
|
||||
}
|
||||
if (global.cur_day == 15)
|
||||
{
|
||||
if (global.cur_client == 1)
|
||||
{
|
||||
if (global.cur_stage < 8)
|
||||
global.ft_stella = 1
|
||||
}
|
||||
}
|
||||
if (global.cur_day == 16)
|
||||
{
|
||||
if (global.cur_client == 2)
|
||||
global.ft_alma = 1
|
||||
}
|
||||
if (global.cur_day == 17)
|
||||
{
|
||||
if (global.cur_client == 3)
|
||||
global.ft_stella = 1
|
||||
}
|
||||
drinksprite_a.spriteshown = 19
|
||||
exit
|
||||
}
|
||||
else if (global.mod_aa == 2 && global.mod_ba == 0 && global.mod_ca == 1 && global.mod_da == 0 && global.mod_ea >= 1 && global.mixed_a && (!global.age_a) && (!global.otr_a) && (!global.failed_a))
|
||||
{
|
||||
global.bev_a = "Солод Спл"
|
||||
global.bevid_a = "srush"
|
||||
global.flavor_a = "sweet"
|
||||
global.kind_a = "girly"
|
||||
global.drinksize_a = "normal"
|
||||
global.alcohol_a = "yes"
|
||||
global.drinkscore_a = 150
|
||||
drinksprite_a.spriteshown = 20
|
||||
exit
|
||||
}
|
||||
else if (global.mod_aa == 2 && global.mod_ba == 0 && global.mod_ca == 1 && global.mod_da == 0 && global.mod_ea == 0 && global.mixed_a && (!global.age_a) && (!global.otr_a) && (!global.failed_a))
|
||||
{
|
||||
global.bev_a = "Солод Спл"
|
||||
global.bevid_a = "srush"
|
||||
global.flavor_a = "sweet"
|
||||
global.kind_a = "girly"
|
||||
global.drinksize_a = "normal"
|
||||
global.alcohol_a = "no"
|
||||
global.drinkscore_a = 150
|
||||
drinksprite_a.spriteshown = 20
|
||||
exit
|
||||
}
|
||||
else if (global.mod_aa == 4 && global.mod_ba == 0 && global.mod_ca == 2 && global.mod_da == 0 && global.mod_ea >= 1 && global.mixed_a && (!global.age_a) && (!global.otr_a) && (!global.failed_a))
|
||||
{
|
||||
global.bev_a = "Солод Спл"
|
||||
global.bevid_a = "srush"
|
||||
global.flavor_a = "sweet"
|
||||
global.kind_a = "girly"
|
||||
global.drinksize_a = "big"
|
||||
global.alcohol_a = "yes"
|
||||
global.drinkscore_a = 150
|
||||
drinksprite_a.spriteshown = 20
|
||||
exit
|
||||
}
|
||||
else if (global.mod_aa == 4 && global.mod_ba == 0 && global.mod_ca == 2 && global.mod_da == 0 && global.mod_ea == 0 && global.mixed_a && (!global.age_a) && (!global.otr_a) && (!global.failed_a))
|
||||
{
|
||||
global.bev_a = "Солод Спл"
|
||||
global.bevid_a = "srush"
|
||||
global.flavor_a = "sweet"
|
||||
global.kind_a = "girly"
|
||||
global.drinksize_a = "big"
|
||||
global.alcohol_a = "no"
|
||||
global.drinkscore_a = 150
|
||||
drinksprite_a.spriteshown = 20
|
||||
exit
|
||||
}
|
||||
else if (global.mod_aa == 2 && global.mod_ba == 0 && global.mod_ca == 1 && global.mod_da == 0 && global.mod_ea >= 1 && global.mixed_a && global.age_a && (!global.otr_a) && (!global.failed_a))
|
||||
{
|
||||
global.bev_a = "Сяюча Зір"
|
||||
global.bevid_a = "sstar"
|
||||
global.flavor_a = "sweet"
|
||||
global.kind_a = "girly"
|
||||
global.drinksize_a = "normal"
|
||||
global.alcohol_a = "yes"
|
||||
global.drinkscore_a = 150
|
||||
drinksprite_a.spriteshown = 21
|
||||
exit
|
||||
}
|
||||
else if (global.mod_aa == 2 && global.mod_ba == 0 && global.mod_ca == 1 && global.mod_da == 0 && global.mod_ea == 0 && global.mixed_a && global.age_a && (!global.otr_a) && (!global.failed_a))
|
||||
{
|
||||
global.bev_a = "Сяюча Зір"
|
||||
global.bevid_a = "sstar"
|
||||
global.flavor_a = "sweet"
|
||||
global.kind_a = "girly"
|
||||
global.drinksize_a = "normal"
|
||||
global.alcohol_a = "no"
|
||||
global.drinkscore_a = 150
|
||||
drinksprite_a.spriteshown = 21
|
||||
exit
|
||||
}
|
||||
else if (global.mod_aa == 4 && global.mod_ba == 0 && global.mod_ca == 2 && global.mod_da == 0 && global.mod_ea >= 1 && global.mixed_a && global.age_a && (!global.otr_a) && (!global.failed_a))
|
||||
{
|
||||
global.bev_a = "Сяюча Зір"
|
||||
global.bevid_a = "sstar"
|
||||
global.flavor_a = "sweet"
|
||||
global.kind_a = "girly"
|
||||
global.drinksize_a = "big"
|
||||
global.alcohol_a = "yes"
|
||||
global.drinkscore_a = 150
|
||||
drinksprite_a.spriteshown = 21
|
||||
exit
|
||||
}
|
||||
else if (global.mod_aa == 4 && global.mod_ba == 0 && global.mod_ca == 2 && global.mod_da == 0 && global.mod_ea == 0 && global.mixed_a && global.age_a && (!global.otr_a) && (!global.failed_a))
|
||||
{
|
||||
global.bev_a = "Сяюча Зір"
|
||||
global.bevid_a = "sstar"
|
||||
global.flavor_a = "sweet"
|
||||
global.kind_a = "girly"
|
||||
global.drinksize_a = "big"
|
||||
global.alcohol_a = "no"
|
||||
global.drinkscore_a = 150
|
||||
drinksprite_a.spriteshown = 21
|
||||
exit
|
||||
}
|
||||
else if (global.mod_aa == 4 && global.mod_ba == 0 && global.mod_ca == 0 && global.mod_da == 1 && global.mod_ea >= 1 && global.mixed_a && global.age_a && (!global.otr_a) && (!global.failed_a))
|
||||
{
|
||||
global.bev_a = "Блак Фея"
|
||||
global.bevid_a = "bfairy"
|
||||
global.flavor_a = "sweet"
|
||||
global.kind_a = "girly"
|
||||
global.drinksize_a = "normal"
|
||||
global.alcohol_a = "yes"
|
||||
global.drinkscore_a = 170
|
||||
drinksprite_a.spriteshown = 22
|
||||
exit
|
||||
}
|
||||
else if (global.mod_aa == 4 && global.mod_ba == 0 && global.mod_ca == 0 && global.mod_da == 1 && global.mod_ea == 0 && global.mixed_a && global.age_a && (!global.otr_a) && (!global.failed_a))
|
||||
{
|
||||
global.bev_a = "Блак Фея"
|
||||
global.bevid_a = "bfairy"
|
||||
global.flavor_a = "sweet"
|
||||
global.kind_a = "girly"
|
||||
global.drinksize_a = "normal"
|
||||
global.alcohol_a = "no"
|
||||
global.drinkscore_a = 170
|
||||
drinksprite_a.spriteshown = 22
|
||||
exit
|
||||
}
|
||||
else if (global.mod_aa == 8 && global.mod_ba == 0 && global.mod_ca == 0 && global.mod_da == 2 && global.mod_ea >= 1 && global.mixed_a && global.age_a && (!global.otr_a) && (!global.failed_a))
|
||||
{
|
||||
global.bev_a = "Блак Фея"
|
||||
global.bevid_a = "bfairy"
|
||||
global.flavor_a = "sweet"
|
||||
global.kind_a = "girly"
|
||||
global.drinksize_a = "big"
|
||||
global.alcohol_a = "yes"
|
||||
global.drinkscore_a = 170
|
||||
drinksprite_a.spriteshown = 22
|
||||
exit
|
||||
}
|
||||
else if (global.mod_aa == 8 && global.mod_ba == 0 && global.mod_ca == 0 && global.mod_da == 2 && global.mod_ea == 0 && global.mixed_a && global.age_a && (!global.otr_a) && (!global.failed_a))
|
||||
{
|
||||
global.bev_a = "Блак Фея"
|
||||
global.bevid_a = "bfairy"
|
||||
global.flavor_a = "sweet"
|
||||
global.kind_a = "girly"
|
||||
global.drinksize_a = "big"
|
||||
global.alcohol_a = "no"
|
||||
global.drinkscore_a = 170
|
||||
drinksprite_a.spriteshown = 22
|
||||
exit
|
||||
}
|
||||
else if (global.mod_aa == 3 && global.mod_ba == 0 && global.mod_ca == 3 && global.mod_da == 0 && global.mod_ea >= 1 && global.mixed_a && global.age_a && (!global.otr_a) && (!global.failed_a))
|
||||
{
|
||||
global.bev_a = "Пух Мрія"
|
||||
global.bevid_a = "fdream"
|
||||
global.flavor_a = "sour"
|
||||
global.kind_a = "girly"
|
||||
global.drinksize_a = "normal"
|
||||
global.alcohol_a = "yes"
|
||||
global.drinkscore_a = 170
|
||||
drinksprite_a.spriteshown = 23
|
||||
exit
|
||||
}
|
||||
else if (global.mod_aa == 3 && global.mod_ba == 0 && global.mod_ca == 3 && global.mod_da == 0 && global.mod_ea == 0 && global.mixed_a && global.age_a && (!global.otr_a) && (!global.failed_a))
|
||||
{
|
||||
global.bev_a = "Пух Мрія"
|
||||
global.bevid_a = "fdream"
|
||||
global.flavor_a = "sour"
|
||||
global.kind_a = "girly"
|
||||
global.drinksize_a = "normal"
|
||||
global.alcohol_a = "no"
|
||||
global.drinkscore_a = 170
|
||||
drinksprite_a.spriteshown = 23
|
||||
exit
|
||||
}
|
||||
else if (global.mod_aa == 6 && global.mod_ba == 0 && global.mod_ca == 6 && global.mod_da == 0 && global.mod_ea >= 1 && global.mixed_a && global.age_a && (!global.otr_a) && (!global.failed_a))
|
||||
{
|
||||
global.bev_a = "Пух Мрія"
|
||||
global.bevid_a = "fdream"
|
||||
global.flavor_a = "sour"
|
||||
global.kind_a = "girly"
|
||||
global.drinksize_a = "big"
|
||||
global.alcohol_a = "yes"
|
||||
global.drinkscore_a = 170
|
||||
drinksprite_a.spriteshown = 23
|
||||
exit
|
||||
}
|
||||
else if (global.mod_aa == 6 && global.mod_ba == 0 && global.mod_ca == 6 && global.mod_da == 0 && global.mod_ea == 0 && global.mixed_a && global.age_a && (!global.otr_a) && (!global.failed_a))
|
||||
{
|
||||
global.bev_a = "Пух Мрія"
|
||||
global.bevid_a = "fdream"
|
||||
global.flavor_a = "sour"
|
||||
global.kind_a = "girly"
|
||||
global.drinksize_a = "big"
|
||||
global.alcohol_a = "no"
|
||||
global.drinkscore_a = 170
|
||||
drinksprite_a.spriteshown = 23
|
||||
exit
|
||||
}
|
||||
else if (global.mod_aa == 2 && global.mod_ba == 2 && global.mod_ca == 0 && global.mod_da == 0 && global.mod_ea >= 1 && (!global.mixed_a) && (!global.age_a) && global.otr_a && global.failed_a)
|
||||
{
|
||||
global.bev_a = "Сон Хмар"
|
||||
global.bevid_a = "scloud"
|
||||
global.flavor_a = "bitter"
|
||||
global.kind_a = "girly"
|
||||
global.drinksize_a = "normal"
|
||||
global.alcohol_a = "yes"
|
||||
global.drinkscore_a = 150
|
||||
drinksprite_a.spriteshown = 24
|
||||
exit
|
||||
}
|
||||
else if (global.mod_aa == 2 && global.mod_ba == 2 && global.mod_ca == 0 && global.mod_da == 0 && global.mod_ea == 0 && (!global.mixed_a) && (!global.age_a) && global.otr_a && global.failed_a)
|
||||
{
|
||||
global.bev_a = "Сон Хмар"
|
||||
global.bevid_a = "scloud"
|
||||
global.flavor_a = "bitter"
|
||||
global.kind_a = "girly"
|
||||
global.drinksize_a = "normal"
|
||||
global.alcohol_a = "no"
|
||||
global.drinkscore_a = 150
|
||||
drinksprite_a.spriteshown = 24
|
||||
exit
|
||||
}
|
||||
else if (global.mod_aa == 4 && global.mod_ba == 4 && global.mod_ca == 0 && global.mod_da == 0 && global.mod_ea >= 1 && (!global.mixed_a) && (!global.age_a) && global.otr_a && global.failed_a)
|
||||
{
|
||||
global.bev_a = "Сон Хмар"
|
||||
global.bevid_a = "scloud"
|
||||
global.flavor_a = "bitter"
|
||||
global.kind_a = "girly"
|
||||
global.drinksize_a = "big"
|
||||
global.alcohol_a = "yes"
|
||||
global.drinkscore_a = 150
|
||||
drinksprite_a.spriteshown = 24
|
||||
exit
|
||||
}
|
||||
else if (global.mod_aa == 4 && global.mod_ba == 4 && global.mod_ca == 0 && global.mod_da == 0 && global.mod_ea == 0 && (!global.mixed_a) && (!global.age_a) && global.otr_a && global.failed_a)
|
||||
{
|
||||
global.bev_a = "Сон Хмар"
|
||||
global.bevid_a = "scloud"
|
||||
global.flavor_a = "bitter"
|
||||
global.kind_a = "girly"
|
||||
global.drinksize_a = "big"
|
||||
global.alcohol_a = "no"
|
||||
global.drinkscore_a = 150
|
||||
drinksprite_a.spriteshown = 24
|
||||
exit
|
||||
}
|
||||
else if (global.mod_aa == 6 && global.mod_ba == 0 && global.mod_ca == 1 && global.mod_da == 1 && global.mod_ea == 2 && (!global.mixed_a) && (!global.age_a) && global.otr_a && global.failed_a)
|
||||
{
|
||||
global.bev_a = "Виб Місц"
|
||||
global.bevid_a = "moblast"
|
||||
global.flavor_a = "sweet"
|
||||
global.kind_a = "girly"
|
||||
global.drinksize_a = "normal"
|
||||
global.alcohol_a = "yes"
|
||||
global.drinkscore_a = 180
|
||||
drinksprite_a.spriteshown = 25
|
||||
exit
|
||||
}
|
||||
else if (global.mod_aa == 12 && global.mod_ba == 0 && global.mod_ca == 2 && global.mod_da == 2 && global.mod_ea == 4 && (!global.mixed_a) && (!global.age_a) && global.otr_a && global.failed_a)
|
||||
{
|
||||
global.bev_a = "Виб Місц"
|
||||
global.bevid_a = "moblast"
|
||||
global.flavor_a = "sweet"
|
||||
global.kind_a = "girly"
|
||||
global.drinksize_a = "big"
|
||||
global.alcohol_a = "yes"
|
||||
global.drinkscore_a = 180
|
||||
drinksprite_a.spriteshown = 25
|
||||
exit
|
||||
}
|
||||
else if (global.mod_aa == 0 && global.mod_ba == 5 && global.mod_ca == 0 && global.mod_da == 1 && global.mod_ea >= 1 && global.mixed_a && global.age_a && (!global.otr_a) && (!global.failed_a))
|
||||
{
|
||||
global.bev_a = "Кпнк у Печ"
|
||||
global.bevid_a = "gpunch"
|
||||
global.flavor_a = "bitter"
|
||||
global.kind_a = "manly"
|
||||
global.drinksize_a = "normal"
|
||||
global.alcohol_a = "yes"
|
||||
global.drinkscore_a = 80
|
||||
drinksprite_a.spriteshown = 26
|
||||
exit
|
||||
}
|
||||
else if (global.mod_aa == 0 && global.mod_ba == 5 && global.mod_ca == 0 && global.mod_da == 1 && global.mod_ea == 0 && global.mixed_a && global.age_a && (!global.otr_a) && (!global.failed_a))
|
||||
{
|
||||
global.bev_a = "Кпнк у Печ"
|
||||
global.bevid_a = "gpunch"
|
||||
global.flavor_a = "bitter"
|
||||
global.kind_a = "manly"
|
||||
global.drinksize_a = "normal"
|
||||
global.alcohol_a = "no"
|
||||
global.drinkscore_a = 80
|
||||
drinksprite_a.spriteshown = 26
|
||||
exit
|
||||
}
|
||||
else if (global.mod_aa == 0 && global.mod_ba == 10 && global.mod_ca == 0 && global.mod_da == 2 && global.mod_ea >= 1 && global.mixed_a && global.age_a && (!global.otr_a) && (!global.failed_a))
|
||||
{
|
||||
global.bev_a = "Кпнк у Печ"
|
||||
global.bevid_a = "gpunch"
|
||||
global.flavor_a = "bitter"
|
||||
global.kind_a = "manly"
|
||||
global.drinksize_a = "big"
|
||||
global.alcohol_a = "yes"
|
||||
global.drinkscore_a = 80
|
||||
drinksprite_a.spriteshown = 26
|
||||
exit
|
||||
}
|
||||
else if (global.mod_aa == 0 && global.mod_ba == 10 && global.mod_ca == 0 && global.mod_da == 2 && global.mod_ea == 0 && global.mixed_a && global.age_a && (!global.otr_a) && (!global.failed_a))
|
||||
{
|
||||
global.bev_a = "Кпнк у Печ"
|
||||
global.bevid_a = "gpunch"
|
||||
global.flavor_a = "bitter"
|
||||
global.kind_a = "manly"
|
||||
global.drinksize_a = "big"
|
||||
global.alcohol_a = "no"
|
||||
global.drinkscore_a = 80
|
||||
|