001/*
002 * Trident - A Multithreaded Server Alternative
003 * Copyright 2014 The TridentSDK Team
004 *
005 * Licensed under the Apache License, Version 2.0 (the "License");
006 * you may not use this file except in compliance with the License.
007 * You may obtain a copy of the License at
008 *
009 *    http://www.apache.org/licenses/LICENSE-2.0
010 *
011 * Unless required by applicable law or agreed to in writing, software
012 * distributed under the License is distributed on an "AS IS" BASIS,
013 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
014 * See the License for the specific language governing permissions and
015 * limitations under the License.
016 */
017
018package net.tridentsdk.server.entity.living;
019
020import net.tridentsdk.base.Position;
021import net.tridentsdk.entity.Entity;
022import net.tridentsdk.entity.Projectile;
023import net.tridentsdk.entity.living.Ghast;
024import net.tridentsdk.entity.living.Player;
025import net.tridentsdk.entity.traits.EntityProperties;
026import net.tridentsdk.entity.types.EntityType;
027import net.tridentsdk.event.entity.EntityDamageEvent;
028import net.tridentsdk.server.entity.TridentLivingEntity;
029
030import java.util.UUID;
031
032public class TridentGhast extends TridentLivingEntity implements Ghast {
033    public TridentGhast(UUID id, Position spawnLocation) {
034        super(id, spawnLocation);
035    }
036
037    @Override
038    public float fireballRadius() {
039        return 0.0F;
040    }
041
042    @Override
043    public void hide(Entity entity) {
044
045    }
046
047    @Override
048    public void show(Entity entity) {
049
050    }
051
052    @Override
053    public EntityDamageEvent lastDamageEvent() {
054        return null;
055    }
056
057    @Override
058    public Player lastPlayerDamager() {
059        return null;
060    }
061
062    @Override
063    public boolean isNameVisible() {
064        return false;
065    }
066
067    @Override
068    public void applyProperties(EntityProperties properties) {
069
070    }
071
072    @Override
073    public <T extends Projectile> T launchProjectile(EntityProperties properties) {
074        return null;
075    }
076
077    @Override
078    public EntityType type() {
079        return EntityType.GHAST;
080    }
081}