Skip to content
Snippets Groups Projects

QoL, display an image with 2 vials if more then one serum is active

Merged DaMatt requested to merge DaMatt/lr2mods:develop into develop
5 files
+ 37
13
Compare changes
  • Side-by-side
  • Inline
Files
5
@@ -55,11 +55,18 @@ screen multi_person_info_ui(actors):
use favourite_toggle_button(actor.person)
if actor.person.serum_effects:
textbutton "{image=serum_vial} +[actor.person.suggestibility]%":
style "transparent_style"
text_style "menu_text_style"
tooltip person_info_ui_get_serum_info_tooltip(actor.person)
action NullAction()
if len(actor.person.serum_effects) > 1:
textbutton "{image=serum_vial2} +[actor.person.suggestibility]%":
style "transparent_style"
text_style "menu_text_style"
tooltip person_info_ui_get_serum_info_tooltip(actor.person)
action NullAction()
else:
textbutton "{image=serum_vial} +[actor.person.suggestibility]%":
style "transparent_style"
text_style "menu_text_style"
tooltip person_info_ui_get_serum_info_tooltip(actor.person)
action NullAction()
textbutton "Arousal: [arousal_info]":
style "transparent_style"
Loading