diff --git a/src/main/java/fathertoast/specialmobs/common/entity/silverfish/ToughSilverfishEntity.java b/src/main/java/fathertoast/specialmobs/common/entity/silverfish/ToughSilverfishEntity.java index 7c1a12b..9b6ac10 100644 --- a/src/main/java/fathertoast/specialmobs/common/entity/silverfish/ToughSilverfishEntity.java +++ b/src/main/java/fathertoast/specialmobs/common/entity/silverfish/ToughSilverfishEntity.java @@ -75,7 +75,8 @@ public class ToughSilverfishEntity extends _SpecialSilverfishEntity { } private static final ResourceLocation[] TEXTURES = { - GET_TEXTURE_PATH( "tough" ) + GET_TEXTURE_PATH( "tough" ), + GET_TEXTURE_PATH( "tough_eyes" ) }; /** @return All default textures for this entity. */ diff --git a/src/main/java/fathertoast/specialmobs/common/entity/skeleton/FireSkeletonEntity.java b/src/main/java/fathertoast/specialmobs/common/entity/skeleton/FireSkeletonEntity.java index e006a4d..3c965b6 100644 --- a/src/main/java/fathertoast/specialmobs/common/entity/skeleton/FireSkeletonEntity.java +++ b/src/main/java/fathertoast/specialmobs/common/entity/skeleton/FireSkeletonEntity.java @@ -73,7 +73,8 @@ public class FireSkeletonEntity extends _SpecialSkeletonEntity { } private static final ResourceLocation[] TEXTURES = { - GET_TEXTURE_PATH( "fire" ) + GET_TEXTURE_PATH( "fire" ), + GET_TEXTURE_PATH( "fire_eyes" ) }; /** @return All default textures for this entity. */ diff --git a/src/main/java/fathertoast/specialmobs/common/entity/skeleton/SpitfireSkeletonEntity.java b/src/main/java/fathertoast/specialmobs/common/entity/skeleton/SpitfireSkeletonEntity.java index 76b689f..11f1977 100644 --- a/src/main/java/fathertoast/specialmobs/common/entity/skeleton/SpitfireSkeletonEntity.java +++ b/src/main/java/fathertoast/specialmobs/common/entity/skeleton/SpitfireSkeletonEntity.java @@ -114,7 +114,8 @@ public class SpitfireSkeletonEntity extends _SpecialSkeletonEntity { public boolean isBaby() { return false; } private static final ResourceLocation[] TEXTURES = { - GET_TEXTURE_PATH( "fire" ) + GET_TEXTURE_PATH( "fire" ), + GET_TEXTURE_PATH( "fire_eyes" ) }; /** @return All default textures for this entity. */ diff --git a/src/main/java/fathertoast/specialmobs/common/entity/witch/DominationWitchEntity.java b/src/main/java/fathertoast/specialmobs/common/entity/witch/DominationWitchEntity.java index 7925103..b10b9cc 100644 --- a/src/main/java/fathertoast/specialmobs/common/entity/witch/DominationWitchEntity.java +++ b/src/main/java/fathertoast/specialmobs/common/entity/witch/DominationWitchEntity.java @@ -112,7 +112,8 @@ public class DominationWitchEntity extends _SpecialWitchEntity { } private static final ResourceLocation[] TEXTURES = { - GET_TEXTURE_PATH( "domination" ) + GET_TEXTURE_PATH( "domination" ), + GET_TEXTURE_PATH( "domination_eyes" ) }; /** @return All default textures for this entity. */ diff --git a/src/main/java/fathertoast/specialmobs/common/entity/witch/ShadowsWitchEntity.java b/src/main/java/fathertoast/specialmobs/common/entity/witch/ShadowsWitchEntity.java index 80887a3..dc42e5a 100644 --- a/src/main/java/fathertoast/specialmobs/common/entity/witch/ShadowsWitchEntity.java +++ b/src/main/java/fathertoast/specialmobs/common/entity/witch/ShadowsWitchEntity.java @@ -87,7 +87,8 @@ public class ShadowsWitchEntity extends _SpecialWitchEntity { } private static final ResourceLocation[] TEXTURES = { - GET_TEXTURE_PATH( "shadows" ) + GET_TEXTURE_PATH( "shadows" ), + GET_TEXTURE_PATH( "shadows_eyes" ) }; /** @return All default textures for this entity. */ diff --git a/src/main/java/fathertoast/specialmobs/common/entity/witch/WindWitchEntity.java b/src/main/java/fathertoast/specialmobs/common/entity/witch/WindWitchEntity.java index 60dcf8a..ff17bba 100644 --- a/src/main/java/fathertoast/specialmobs/common/entity/witch/WindWitchEntity.java +++ b/src/main/java/fathertoast/specialmobs/common/entity/witch/WindWitchEntity.java @@ -247,7 +247,8 @@ public class WindWitchEntity extends _SpecialWitchEntity { } private static final ResourceLocation[] TEXTURES = { - GET_TEXTURE_PATH( "wind" ) + GET_TEXTURE_PATH( "wind" ), + GET_TEXTURE_PATH( "wind_eyes" ) }; /** @return All default textures for this entity. */ diff --git a/src/main/java/fathertoast/specialmobs/common/entity/witherskeleton/SpitfireWitherSkeletonEntity.java b/src/main/java/fathertoast/specialmobs/common/entity/witherskeleton/SpitfireWitherSkeletonEntity.java index 5230d0b..46120d0 100644 --- a/src/main/java/fathertoast/specialmobs/common/entity/witherskeleton/SpitfireWitherSkeletonEntity.java +++ b/src/main/java/fathertoast/specialmobs/common/entity/witherskeleton/SpitfireWitherSkeletonEntity.java @@ -113,7 +113,8 @@ public class SpitfireWitherSkeletonEntity extends _SpecialWitherSkeletonEntity { public boolean isBaby() { return false; } private static final ResourceLocation[] TEXTURES = { - GET_TEXTURE_PATH( "fire" ) + GET_TEXTURE_PATH( "fire" ), + GET_TEXTURE_PATH( "fire_eyes" ) }; /** @return All default textures for this entity. */ diff --git a/src/main/resources/assets/specialmobs/textures/entity/creeper/ender_eyes.png b/src/main/resources/assets/specialmobs/textures/entity/creeper/ender_eyes.png index ae525d4..a462311 100644 Binary files a/src/main/resources/assets/specialmobs/textures/entity/creeper/ender_eyes.png and b/src/main/resources/assets/specialmobs/textures/entity/creeper/ender_eyes.png differ diff --git a/src/main/resources/assets/specialmobs/textures/entity/creeper/splitting_eyes.png b/src/main/resources/assets/specialmobs/textures/entity/creeper/splitting_eyes.png index c20ae3d..156890c 100644 Binary files a/src/main/resources/assets/specialmobs/textures/entity/creeper/splitting_eyes.png and b/src/main/resources/assets/specialmobs/textures/entity/creeper/splitting_eyes.png differ diff --git a/src/main/resources/assets/specialmobs/textures/entity/enderman/blinding_eyes.png b/src/main/resources/assets/specialmobs/textures/entity/enderman/blinding_eyes.png index 8258ff2..398f290 100644 Binary files a/src/main/resources/assets/specialmobs/textures/entity/enderman/blinding_eyes.png and b/src/main/resources/assets/specialmobs/textures/entity/enderman/blinding_eyes.png differ diff --git a/src/main/resources/assets/specialmobs/textures/entity/enderman/icy_eyes.png b/src/main/resources/assets/specialmobs/textures/entity/enderman/icy_eyes.png index c44f354..8fc0cdc 100644 Binary files a/src/main/resources/assets/specialmobs/textures/entity/enderman/icy_eyes.png and b/src/main/resources/assets/specialmobs/textures/entity/enderman/icy_eyes.png differ diff --git a/src/main/resources/assets/specialmobs/textures/entity/enderman/lightning_eyes.png b/src/main/resources/assets/specialmobs/textures/entity/enderman/lightning_eyes.png index 6b66d66..0955b06 100644 Binary files a/src/main/resources/assets/specialmobs/textures/entity/enderman/lightning_eyes.png and b/src/main/resources/assets/specialmobs/textures/entity/enderman/lightning_eyes.png differ diff --git a/src/main/resources/assets/specialmobs/textures/entity/enderman/mirage_eyes.png b/src/main/resources/assets/specialmobs/textures/entity/enderman/mirage_eyes.png index 136aba9..ff3d6c0 100644 Binary files a/src/main/resources/assets/specialmobs/textures/entity/enderman/mirage_eyes.png and b/src/main/resources/assets/specialmobs/textures/entity/enderman/mirage_eyes.png differ diff --git a/src/main/resources/assets/specialmobs/textures/entity/enderman/thief_eyes.png b/src/main/resources/assets/specialmobs/textures/entity/enderman/thief_eyes.png index bc545f5..fb6096d 100644 Binary files a/src/main/resources/assets/specialmobs/textures/entity/enderman/thief_eyes.png and b/src/main/resources/assets/specialmobs/textures/entity/enderman/thief_eyes.png differ diff --git a/src/main/resources/assets/specialmobs/textures/entity/silverfish/tough_eyes.png b/src/main/resources/assets/specialmobs/textures/entity/silverfish/tough_eyes.png new file mode 100644 index 0000000..871b3a2 Binary files /dev/null and b/src/main/resources/assets/specialmobs/textures/entity/silverfish/tough_eyes.png differ diff --git a/src/main/resources/assets/specialmobs/textures/entity/skeleton/fire_eyes.png b/src/main/resources/assets/specialmobs/textures/entity/skeleton/fire_eyes.png new file mode 100644 index 0000000..8475359 Binary files /dev/null and b/src/main/resources/assets/specialmobs/textures/entity/skeleton/fire_eyes.png differ diff --git a/src/main/resources/assets/specialmobs/textures/entity/witch/domination_eyes.png b/src/main/resources/assets/specialmobs/textures/entity/witch/domination_eyes.png new file mode 100644 index 0000000..d5438ae Binary files /dev/null and b/src/main/resources/assets/specialmobs/textures/entity/witch/domination_eyes.png differ diff --git a/src/main/resources/assets/specialmobs/textures/entity/witch/shadows_eyes.png b/src/main/resources/assets/specialmobs/textures/entity/witch/shadows_eyes.png new file mode 100644 index 0000000..3f72c22 Binary files /dev/null and b/src/main/resources/assets/specialmobs/textures/entity/witch/shadows_eyes.png differ diff --git a/src/main/resources/assets/specialmobs/textures/entity/witch/wind.png b/src/main/resources/assets/specialmobs/textures/entity/witch/wind.png index ab1a16f..2551d42 100644 Binary files a/src/main/resources/assets/specialmobs/textures/entity/witch/wind.png and b/src/main/resources/assets/specialmobs/textures/entity/witch/wind.png differ diff --git a/src/main/resources/assets/specialmobs/textures/entity/witch/wind_eyes.png b/src/main/resources/assets/specialmobs/textures/entity/witch/wind_eyes.png new file mode 100644 index 0000000..de46535 Binary files /dev/null and b/src/main/resources/assets/specialmobs/textures/entity/witch/wind_eyes.png differ diff --git a/src/main/resources/assets/specialmobs/textures/entity/witherskeleton/fire_eyes.png b/src/main/resources/assets/specialmobs/textures/entity/witherskeleton/fire_eyes.png new file mode 100644 index 0000000..1e05e3d Binary files /dev/null and b/src/main/resources/assets/specialmobs/textures/entity/witherskeleton/fire_eyes.png differ