Jump to content

How can I register an entity? [1.16.5]


ArianKG

Recommended Posts

I registered an entity, but when I summon my entity, Minecraft says: "Unable to summon entity"

My codes:

c/CRegistries.java:

package com.kg.kgforge.c;

import com.kg.kgforge.KGForge;
import net.minecraft.entity.EntityType;
import net.minecraftforge.registries.DeferredRegister;
import net.minecraftforge.registries.ForgeRegistries;

public class CRegistries {
    public static final DeferredRegister<EntityType<?>> ENTITIES = DeferredRegister.create(ForgeRegistries.ENTITIES, KGForge.MODID);
}

c/CEntities.java:

package com.kg.kgforge.c;

import com.kg.kgforge.entity.KagoEntity;
import net.minecraft.entity.EntityClassification;
import net.minecraft.entity.EntityType;

public class CEntities {
    public static final EntityType<KagoEntity> KAGO = EntityType.Builder.of(KagoEntity::new, EntityClassification.MONSTER).sized(0.6F, 1.95F).clientTrackingRange(8).build("kago");
}

entity/KagoEntity.java:

package com.kg.kgforge.entity;

import net.minecraft.entity.EntityType;
import net.minecraft.entity.monster.MonsterEntity;
import net.minecraft.world.World;

public class KagoEntity extends MonsterEntity {
    public KagoEntity(EntityType<? extends MonsterEntity> type, World world) {
        super(type, world);
    }
}

init/InitEntities.java:

package com.kg.kgforge.init;

import com.kg.kgforge.c.CEntities;
import com.kg.kgforge.c.CRegistries;

public class InitEntities {
    public static void initEntities() {
        CRegistries.ENTITIES.register("kago", () -> CEntities.KAGO);
        CRegistries.ENTITIES.register(Init.EVENT_BUS);
    }
}
Edited by ArianKG
Link to comment
Share on other sites

  • ArianKG changed the title to How can I register an entity? [1.16.5]

@diesieben07 What is the problem now?

package com.kg.kgforge.entity;

import net.minecraft.entity.EntityType;
import net.minecraft.entity.LivingEntity;
import net.minecraft.entity.ai.attributes.AttributeModifierMap;
import net.minecraft.entity.ai.attributes.Attributes;
import net.minecraft.entity.monster.MonsterEntity;
import net.minecraft.world.World;
import net.minecraftforge.event.entity.EntityAttributeCreationEvent;

import java.util.HashMap;
import java.util.Map;

public class KagoEntity extends MonsterEntity {
    public KagoEntity(EntityType<? extends KagoEntity> type, World world) {
        super(type, world);
        Map<EntityType<? extends LivingEntity>, AttributeModifierMap> map = new HashMap<>();
        map.put(type, createAttributes().build());
        new EntityAttributeCreationEvent(map);
        setHealth(getMaxHealth());
    }
    public static AttributeModifierMap.MutableAttribute createAttributes() {
        return MonsterEntity.createMonsterAttributes()
            .add(Attributes.MAX_HEALTH, 512.0D)
            .add(Attributes.MOVEMENT_SPEED, 1.0D)
            .add(Attributes.FOLLOW_RANGE, 128.0D);
    }
}
Edited by ArianKG
Link to comment
Share on other sites

@diesieben07 What is the problem now?

package com.kg.kgforge.c;

import com.kg.kgforge.entity.KagoEntity;
import net.minecraft.entity.EntityClassification;
import net.minecraft.entity.EntityType;
import net.minecraftforge.event.entity.EntityAttributeCreationEvent;

public class CEntities {
    public static final EntityType<KagoEntity> KAGO = EntityType.Builder.of(KagoEntity::new, EntityClassification.MONSTER).sized(0.6F, 1.95F).clientTrackingRange(8).build("kago");
    public static void registerAttributes(EntityAttributeCreationEvent event) {
        event.put(KAGO, KagoEntity.createAttributes().build());
    }
}
Edited by ArianKG
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Announcements



×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.