/* * This file is part of MyPet * * Copyright © 2011-2016 Keyle * MyPet is licensed under the GNU Lesser General Public License. * * MyPet is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * MyPet is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ package de.Keyle.MyPet.entity.types; import de.Keyle.MyPet.api.entity.MyPetType; import de.Keyle.MyPet.api.player.MyPetPlayer; import de.Keyle.MyPet.entity.MyPet; import de.keyle.knbt.TagByte; import de.keyle.knbt.TagCompound; import org.bukkit.ChatColor; public class MySnowman extends MyPet implements de.Keyle.MyPet.api.entity.types.MySnowman { boolean sheared = false; public MySnowman(MyPetPlayer petOwner) { super(petOwner); } @Override public MyPetType getPetType() { return MyPetType.Snowman; } @Override public boolean isSheared() { return sheared; } @Override public void setSheared(boolean flag) { this.sheared = flag; if (status == PetState.Here) { getEntity().get().getHandle().updateVisuals(); } } @Override public TagCompound writeExtendedInfo() { TagCompound info = super.writeExtendedInfo(); info.getCompoundData().put("Sheared", new TagByte(isSheared())); return info; } @Override public void readExtendedInfo(TagCompound info) { if (info.getCompoundData().containsKey("Sheared")) { setSheared(info.getAs("Sheared", TagByte.class).getBooleanData()); } } @Override public String toString() { return "MySnowman{owner=" + getOwner().getName() + ", name=" + ChatColor.stripColor(petName) + ", exp=" + experience.getExp() + "/" + experience.getRequiredExp() + ", lv=" + experience.getLevel() + ", status=" + status.name() + ", skilltree=" + (skillTree != null ? skillTree.getName() : "-") + ", worldgroup=" + worldGroup + "}"; } }