Fly faint-summoned apples and bees out from the pet.

This commit is contained in:
Greyson Parrelli
2026-07-23 07:54:19 -04:00
parent 3922f545dc
commit f7a00f6c48
2 changed files with 53 additions and 1 deletions
+49
View File
@@ -863,6 +863,55 @@ h3 {
pointer-events: none;
}
/* Spawn arcs out from the pet (inner edge) onto the deck. The pet sits to the
right of the deck on the left side and to the left on the right side, so
each side pulls its spawn in from the opposite direction. */
@keyframes summon-from-right {
0% {
opacity: 0;
transform: translate(120px, 8px) scale(0.5) rotate(10deg);
}
25% {
opacity: 1;
transform: translate(64px, -22px) scale(1.05) rotate(5deg);
}
70% {
opacity: 1;
transform: translate(0, -12px) scale(1) rotate(0);
}
100% {
opacity: 0;
transform: translate(0, 2px) scale(0.72);
}
}
@keyframes summon-from-left {
0% {
opacity: 0;
transform: translate(-120px, 8px) scale(0.5) rotate(-10deg);
}
25% {
opacity: 1;
transform: translate(-64px, -22px) scale(1.05) rotate(-5deg);
}
70% {
opacity: 1;
transform: translate(0, -12px) scale(1) rotate(0);
}
100% {
opacity: 0;
transform: translate(0, 2px) scale(0.72);
}
}
.summon-pop.summon-from-right {
animation-name: summon-from-right;
}
.summon-pop.summon-from-left {
animation-name: summon-from-left;
}
/* --- foods waiting for a pet --- */
.pending-foods {