2022-06-18 12:10:15 +03:00
|
|
|
package sig.objects.enemies;
|
|
|
|
|
|
|
|
import sig.RabiClone;
|
|
|
|
import sig.engine.Sprite;
|
|
|
|
import sig.objects.BunnyGirls;
|
|
|
|
|
|
|
|
public class YellowBun extends BunnyGirls{
|
|
|
|
|
|
|
|
public YellowBun(double x, double y) {
|
2022-06-18 12:20:18 +03:00
|
|
|
super(Sprite.YELLOW_STAND,Sprite.YELLOW_WALK, 6.5, RabiClone.p);
|
2022-06-18 12:10:15 +03:00
|
|
|
setX(x);
|
|
|
|
setY(y);
|
2022-06-27 15:03:50 +00:00
|
|
|
setAccelerationLimits_UseDefaultStrategy();
|
|
|
|
setVelocityLimits_UseDefaultStrategy();
|
|
|
|
setGroundDrag_UseDefaultStrategy();
|
|
|
|
setGroundFriction_UseDefaultStrategy();
|
|
|
|
setAirDrag_UseDefaultStrategy();
|
|
|
|
setAirFriction_UseDefaultStrategy();
|
|
|
|
setSlidingVelocity_UseDefaultStrategy();
|
|
|
|
setSlidingAcceleration_UseDefaultStrategy();
|
|
|
|
setJumpVelocity_UseDefaultStrategy();
|
|
|
|
setGravity_UseHalfStrategy(150);
|
2022-06-18 12:10:15 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|