Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- EntityWitherSkeleton.java
- import net.minecraft.entity.monster.EntitySkeleton;
- import net.minecraft.world.World;
- public class EntityWitherSkeleton extends EntitySkeleton {
- public EntityWitherSkeleton(World p_i1741_1_) {
- super(p_i1741_1_);
- this.setSkeletonType(1);
- }
- }
- -------------------------
- EntityRegistry.addSpawn(EntityWitherSkeleton.class, 100, 10, 100, EnumCreatureType.monster, BiomeGenBase.forest);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement