WTS/game/scripts/characters/astoria/favors.rpy

41 lines
1.1 KiB
Plaintext

# Imperius Curse
default ag_st_imperio = event_class(
title = _("Imperio Training"), start_label = "ag_st_imperio", start_tier = 1,
events = [
[
["ag_st_imperio_E1"],
["ag_st_imperio_E2"],
["ag_st_imperio_E3"],
["ag_st_imperio_E4"],
["ag_st_imperio_E5"]
]
],
icons = [None], # If a tier doesn't need an icon replace with None
iconset = [["star_empty", "star_yellow"]],
complete = False
)
default ag_se_imperio_sb = event_class(
title = _("Cast Imperio on Susan"), start_label = "ag_se_imperio_sb", start_tier = 1,
events = [
[
["ag_se_imperio_sb_E1"],
["ag_se_imperio_sb_E2"],
["ag_se_imperio_sb_E3"]
]
],
icons = [None], # If a tier doesn't need an icon replace with None
iconset = [["heart_empty", "heart_red"]],
complete = True
)
default ag_spell_list = []
label update_astoria_spells:
$ del ag_spell_list[:] # Clear list
if not ag_st_imperio.is_complete():
$ ag_spell_list.append(ag_st_imperio)
else:
$ ag_spell_list.append(ag_se_imperio_sb) # Susan
return