Luna Fellatio CG posing and nicknames

* Event posing.
* Added nickname for Genie "Genie".
* Added unlock req for Luna "Cumslut" nickname.
This commit is contained in:
Johnny28 2023-11-10 16:17:32 +01:00
parent 682d0b424c
commit 4d5a7fef3b
3 changed files with 260 additions and 107 deletions

File diff suppressed because it is too large Load Diff

View File

@ -186,6 +186,8 @@ label luna_talk:
$ name_genie_luna = "Master"
"-Daddy-" if states.lun.tier >= 2:
$ name_genie_luna = "Daddy"
"-Genie-" if states.lun.ev.gen_genie_nickname_unlocked:
$ name_genie_luna = "Genie"
"-Custom Input-" if states.lun.tier >= 3:
$ name_genie_luna = renpy.input("(Please enter the name.)", name_genie_luna, ALLOWED_CHARACTERS, length=14).strip() or "Professor"
"-Never mind-":
@ -209,7 +211,7 @@ label luna_talk:
$ name_luna_genie = "Bimbo"
"-Minx-" if states.lun.tier >= 3:
$ name_luna_genie = "Minx"
"-Cumslut-" if states.lun.tier >= 5:
"-Cumslut-" if states.lun.ev.lun_cumslut_nickname_unlocked:
$ name_luna_genie = "Cumslut"
"-Custom Input-" if states.lun.tier >= 3:
$ name_luna_genie = renpy.input("(Please enter the name.)", name_luna_genie, ALLOWED_CHARACTERS, length=14).strip() or "Miss Lovegood"
@ -267,7 +269,14 @@ label genie_luna_change:
gen "I'm your daddy now..." ("base", xpos="far_left", ypos="head")
lun "*Huh*?" ("angry", "base", "base", "mid")
gen "Call me daddy you naughty girl!" ("angry", xpos="far_left", ypos="head")
lun "Oh...{w=0.3} Yes, I'm sorry [name_genie_luna]!" ("angry", "happyCl", "base", "mid")
lun "Oh...{w=0.4} Yes, I'm sorry [name_genie_luna]!" ("angry", "happyCl", "base", "mid")
elif name_genie_luna == "Genie":
lun "[name_genie_luna]..." ("open", "narrow", "base", "mid")
lun "Wouldn't it be a bit weird if I called you that?" ("annoyed", "base", "base", "mid")
gen "Why would it?" ("base", xpos="far_left", ypos="head")
lun "Wouldn't me calling you \"genie\" be the same as you calling me \"human\"?" ("soft", "narrow", "base", "mid")
gen "Genie's my name..." ("base", xpos="far_left", ypos="head")
lun "Oh...{w=0.4} How convenient!" ("soft", "base", "base", "stare")
else: #custom/fallback
lun "Okay, I'll call you [name_genie_luna] from now on..." ("base", "base", "base", "mid")
jump luna_talk

View File

@ -44,6 +44,8 @@ default states.lun.ev.quibbler.stocked = False
default states.lun.ev.talk_to_me.t1_e3_complete = False
default states.lun.ev.inspect_her_body.t2_e3_complete = False
default states.lun.ev.play_with_yourself.t3_e3_complete = False
default states.lun.ev.gen_genie_nickname_unlocked = False
default states.lun.ev.lun_cumslut_nickname_unlocked = False
# Flags
default lun_level_up = None