Add Flat command

This commit is contained in:
Oliver 2022-04-08 22:44:10 +00:00
parent 01e082136f
commit 02ba30072a

View File

@ -0,0 +1,33 @@
package com.eu.habbo.habbohotel.pets.actions;
import com.eu.habbo.Emulator;
import com.eu.habbo.habbohotel.pets.Pet;
import com.eu.habbo.habbohotel.pets.PetAction;
import com.eu.habbo.habbohotel.pets.PetVocalsType;
import com.eu.habbo.habbohotel.rooms.RoomUnitStatus;
import com.eu.habbo.habbohotel.users.Habbo;
import com.eu.habbo.threading.runnables.PetClearPosture;
public class ActionFlat extends PetAction {
public ActionFlat() {
super(null, true);
this.minimumActionDuration = 4000;
this.statusToSet.add(RoomUnitStatus.FLAT);
}
// flat attack
@Override
public boolean apply(Pet pet, Habbo habbo, String[] data) {
if (pet.getHappyness() > 30) {
Emulator.getThreading().run(new PetClearPosture(pet, RoomUnitStatus.FLAT, null, false), this.minimumActionDuration);
pet.say(pet.getPetData().randomVocal(PetVocalsType.GENERIC_NEUTRAL));
return true;
} else {
pet.say(pet.getPetData().randomVocal(PetVocalsType.DISOBEY));
return false;
}
}
}