Skip to content

Commit

Permalink
clarify two todos
Browse files Browse the repository at this point in the history
  • Loading branch information
CammiePone committed Jan 24, 2025
1 parent 2e2ee6b commit 9b6f664
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,14 @@ public class ArcanusEntities {
public static final RegistrySupplier<EntityType<NecroSkeleton>> NECRO_SKELETON = ENTITY_TYPES.register("necro_skeleton", () -> FabricEntityTypeBuilder.createMob().entityFactory(NecroSkeleton::new).disableSummon().defaultAttributes(NecroSkeleton::createAttributes).dimensions(EntityDimensions.scalable(0.6f, 1.8f)).build());
public static final RegistrySupplier<EntityType<ManaShield>> MANA_SHIELD = ENTITY_TYPES.register("mana_shield", () -> FabricEntityTypeBuilder.create().entityFactory(ManaShield::new).fireImmune().disableSummon().dimensions(EntityDimensions.fixed(4f, 4f)).build());
public static final RegistrySupplier<EntityType<Missile>> MISSILE = ENTITY_TYPES.register("missile", () -> FabricEntityTypeBuilder.create().entityFactory(Missile::new).fireImmune().disableSummon().dimensions(EntityDimensions.fixed(0.6f, 0.6f)).build());
// TODO replace name with something better
// TODO replace lob's name with something better
public static final RegistrySupplier<EntityType<Lob>> LOB = ENTITY_TYPES.register("lob", () -> FabricEntityTypeBuilder.create().entityFactory(Lob::new).fireImmune().disableSummon().dimensions(EntityDimensions.fixed(0.6f, 0.6f)).build());
public static final RegistrySupplier<EntityType<Smite>> SMITE = ENTITY_TYPES.register("smite", () -> FabricEntityTypeBuilder.create().entityFactory(Smite::new).fireImmune().disableSummon().dimensions(EntityDimensions.fixed(4f, 4f)).build());
public static final RegistrySupplier<EntityType<MagicRune>> MAGIC_RUNE = ENTITY_TYPES.register("magic_rune", () -> FabricEntityTypeBuilder.create().entityFactory(MagicRune::new).fireImmune().disableSummon().dimensions(EntityDimensions.fixed(1f, 0.125f)).build());
public static final RegistrySupplier<EntityType<AreaOfEffect>> AOE = ENTITY_TYPES.register("area_of_effect", () -> FabricEntityTypeBuilder.create().entityFactory(AreaOfEffect::new).fireImmune().disableSummon().dimensions(EntityDimensions.fixed(4f, 2.5f)).build());
public static final RegistrySupplier<EntityType<Beam>> BEAM = ENTITY_TYPES.register("beam", () -> FabricEntityTypeBuilder.create().entityFactory(Beam::new).fireImmune().disableSummon().dimensions(EntityDimensions.fixed(0.1f, 0.1f)).build());
public static final RegistrySupplier<EntityType<EntangledOrb>> ENTANGLED_ORB = ENTITY_TYPES.register("entangled_orb", () -> FabricEntityTypeBuilder.create().entityFactory(EntangledOrb::new).trackedUpdateRate(60).fireImmune().disableSummon().dimensions(EntityDimensions.fixed(0.4f, 0.4f)).build());
// TODO replace name with something better
// TODO replace aggressorb's name with something better
public static final RegistrySupplier<EntityType<Aggressorb>> AGGRESSORB = ENTITY_TYPES.register("aggressorb", () -> FabricEntityTypeBuilder.create().entityFactory(Aggressorb::new).trackedUpdateRate(60).fireImmune().disableSummon().dimensions(EntityDimensions.fixed(0.4f, 0.4f)).build());
public static final RegistrySupplier<EntityType<PocketDimensionPortal>> PORTAL = ENTITY_TYPES.register("pocket_dimension_portal", () -> FabricEntityTypeBuilder.create().entityFactory(PocketDimensionPortal::new).fireImmune().disableSummon().dimensions(EntityDimensions.fixed(1.5f, 0.1f)).build());
public static final RegistrySupplier<EntityType<TemporalDilationField>> TEMPORAL_DILATION_FIELD = ENTITY_TYPES.register("temporal_dilation_field", () -> FabricEntityTypeBuilder.create().entityFactory(TemporalDilationField::new).fireImmune().disableSummon().dimensions(EntityDimensions.fixed(9f, 9f)).build());
Expand Down

0 comments on commit 9b6f664

Please sign in to comment.