WTS/game/scripts/characters/cho/favors.rpy
LoafyLemon 5c952fe7da Translation support - Part 1
* Added language switch option (WIP)
* Fixed translation generation cache cleanup
* Fixed python strings being untranslatable (partially)
2022-10-31 20:35:00 +00:00

52 lines
1.6 KiB
Plaintext

# Cho Favors
# cc_pf = Cho Chang Personal Favor
default cc_pf_talk = event_class(title = _("Talk to me!"), start_label = "cc_pf_talk", start_tier = 1,
events = [
[
["cc_pf_talk_T1_intro_E1"],
["cc_pf_talk_T1_intro_E2"],
["cc_pf_talk_T1_E3"]
],
[
["cc_pf_talk_T2_intro_E1"],
["cc_pf_talk_T2_intro_E2"],
["cc_pf_talk_T2_E3"]
],
[
["cc_pf_talk_T3_intro_E1"],
["cc_pf_talk_T3_intro_E2"],
["cc_pf_talk_T3_E3"]
]
],
iconset = [["heart_empty", "heart_red"], ["heart_empty", "heart_red"], ["heart_empty", "heart_red"]]
)
#cc_pf_strip_T3_intro_E3
default cc_pf_strip = event_class(title = _("Inspect her body!"), start_label = "cc_pf_strip", start_tier = 2,
events = [
[
["cc_pf_strip_T2_intro_E1"],
["cc_pf_strip_T2_intro_E2"],
["cc_pf_strip_T2_intro_E3"], ["cc_pf_strip_T2_E3"]
],
[
["cc_pf_strip_T3_intro_E1"],
["cc_pf_strip_T3_intro_E2"],
["cc_pf_strip_T3_intro_E3"], ["cc_pf_strip_T3_repeat"]
]
],
iconset = [["heart_empty", "heart_red"], ["heart_empty", "heart_red"]]
)
default cc_pf_blowjob = event_class(title = _("Suck it!"), start_label = "cc_pf_blowjob", start_tier = 3,
events = [
[
["cc_pf_blowjob_T3_intro_E1"],
["cc_pf_blowjob_T3_E2"],
["cc_pf_blowjob_T3_E3"],
]
],
iconset = [["heart_empty", "heart_red"]]
)
default cc_favor_list = [cc_pf_talk, cc_pf_strip, cc_pf_blowjob]