Skip to content

Commit

Permalink
weedkiller
Browse files Browse the repository at this point in the history
  • Loading branch information
MBatt1 committed May 1, 2024
1 parent a37b9d4 commit 7ac2467
Show file tree
Hide file tree
Showing 18 changed files with 0 additions and 579 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ public class ParadiseLostModelLayers {

public static final Map<EntityModelLayer, TexturedModelData> ENTRIES = Maps.newHashMap();

public static final EntityModelLayer HELLENROSE = register("hellenrose", "main", ParadiseLostPlantModel.getTexturedModelData());
public static final EntityModelLayer ENVOY = register("envoy", "main", EnvoyEntityModel.getTexturedModelData());
public static final EntityModelLayer ENVOY_INNER_ARMOR = register("envoy", "inner_armor", INNER_ARMOR_MODEL_DATA);
public static final EntityModelLayer ENVOY_OUTER_ARMOR = register("envoy", "outer_armor", OUTER_ARMOR_MODEL_DATA);
Expand Down

This file was deleted.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
import net.fabricmc.fabric.api.client.rendering.v1.EntityRendererRegistry;
import net.id.incubus_core.blocklikeentities.api.client.BlockLikeEntityRenderer;
import net.id.paradiselost.client.rendering.entity.hostile.EnvoyEntityRenderer;
import net.id.paradiselost.client.rendering.entity.hostile.HellenroseRenderer;
import net.id.paradiselost.client.rendering.entity.passive.ParadiseHareRenderer;
import net.id.paradiselost.client.rendering.entity.passive.MoaEntityRenderer;
import net.id.paradiselost.entities.ParadiseLostEntityTypes;
Expand All @@ -21,7 +20,6 @@ public static void initClient() {
register(ParadiseLostEntityTypes.SLIDER, BlockLikeEntityRenderer::new);

// hostile
register(ParadiseLostEntityTypes.HELLENROSE, HellenroseRenderer::new);
register(ParadiseLostEntityTypes.ENVOY, EnvoyEntityRenderer::new);

// passive
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
import net.id.paradiselost.entities.block.FloatingBlockEntity;
import net.id.paradiselost.entities.block.SliderEntity;
import net.id.paradiselost.entities.hostile.EnvoyEntity;
import net.id.paradiselost.entities.hostile.HellenroseEntity;
import net.id.paradiselost.entities.passive.ParadiseHareEntity;
import net.id.paradiselost.entities.passive.ParadiseLostAnimalEntity;
import net.id.paradiselost.entities.passive.ambyst.FindLogSensor;
Expand All @@ -25,7 +24,6 @@
import net.minecraft.entity.ai.brain.sensor.SensorType;
import net.minecraft.entity.attribute.DefaultAttributeContainer;
import net.minecraft.entity.mob.MobEntity;
import net.minecraft.entity.mob.SkeletonEntity;
import net.minecraft.entity.passive.AnimalEntity;
import net.minecraft.server.world.ServerWorld;
import net.minecraft.util.math.BlockPos;
Expand All @@ -50,8 +48,6 @@ public class ParadiseLostEntityTypes {
ParadiseLostEntityTypes.<SliderEntity>of(SliderEntity::new, MISC, changing(0.98F, 0.98F), 10).trackedUpdateRate(20));

// Hostile
public static final EntityType<HellenroseEntity> HELLENROSE = add("hellenrose", of(HellenroseEntity::new, MONSTER, changing(1f, 1f), 5),
attributes(HellenroseEntity::createHellenroseAttributes), spawnRestrictions(HellenroseEntity::canSpawn));
public static final EntityType<EnvoyEntity> ENVOY = add("envoy", of(EnvoyEntity::new, MONSTER, changing(1f, 2f), 7),
attributes(EnvoyEntity::createEnvoyAttributes), spawnRestrictions(EnvoyEntity::canMobSpawn));

Expand Down
Loading

0 comments on commit 7ac2467

Please sign in to comment.