Deltarune (Chapter 3) script viewer

← back to main script listing

gml_Object_obj_chefs_fire_Collision_obj_chefs_food

(view raw script w/o annotations or w/e)
1
if (obj_chefs_kris.invincible)
2
    exit;
3
if (other.caught && !other.thrown && !other.on_fire)
4
{
5
    with (obj_chefs_kris)
6
        burn_stack();
7
    instance_destroy();
8
}