mirror of
https://github.com/HbmMods/Hbm-s-Nuclear-Tech-GIT.git
synced 2026-01-25 10:32:49 +00:00
20 lines
455 B
Java
20 lines
455 B
Java
package com.hbm.entity.mob;
|
|
|
|
import com.hbm.items.ModItems;
|
|
|
|
import net.minecraft.entity.monster.EntityZombie;
|
|
import net.minecraft.item.ItemStack;
|
|
import net.minecraft.world.World;
|
|
|
|
public class EntityFBI extends EntityZombie {
|
|
|
|
public EntityFBI(World p_i1745_1_) {
|
|
super(p_i1745_1_);
|
|
}
|
|
|
|
protected void addRandomArmor() {
|
|
super.addRandomArmor();
|
|
this.setCurrentItemOrArmor(0, new ItemStack(ModItems.gun_revolver_nopip));
|
|
}
|
|
}
|