InstanceCreationCode_inst_304C186B.gml 244 B

12345678910111213
  1. criteria = function()
  2. {
  3. return state == state_focus;
  4. }
  5. trigger = function()
  6. {
  7. return global.playerINK == 9 && global.playerHP <= 3;
  8. };
  9. init_spr = function()
  10. {
  11. spr_index = global.altcontrol ? sTutorFocusAlt : sTutorFocus;
  12. }
  13. persistent = true;