Desliza a kristal de derecha a izquierda.
Haz que kris coma sushi y evita la cebolla
TE MORISTE BEBE
Score: 0
```
### What I changed
The important addition is this:
```
playerHitImage: "character-eating.png",
```
and when sushi is caught:
```
showSushiHitImage();
```
The function changes the image and waits **500 milliseconds (½ second)**:
```
function showSushiHitImage() {
playerImage.src = CONFIG.playerHitImage;
clearTimeout(hitImageTimeout);
hitImageTimeout = setTimeout(function() {
playerImage.src = CONFIG.playerImage;
}, 500);
}
```
So you'll need these two player images:
- `jugadora.png` → normal character
- `character-eating.png` → character's temporary sushi/eating image
If you want the eating image to **flash much faster**, like 0.2 seconds, change `500` to `200`.