more mob tweaks, texture tweaks
This commit is contained in:
@@ -1,5 +1,6 @@
|
||||
package StevenDimDoors.mod_pocketDim;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.ArrayList;
|
||||
import java.util.HashMap;
|
||||
import java.util.Random;
|
||||
@@ -8,7 +9,7 @@ import net.minecraft.world.World;
|
||||
|
||||
|
||||
|
||||
public class DungeonGenerator
|
||||
public class DungeonGenerator implements Serializable
|
||||
{
|
||||
|
||||
public int weight;
|
||||
|
||||
@@ -583,7 +583,7 @@ public class mod_pocketDim
|
||||
this.complexHalls.add(new DungeonGenerator(0, "brokenPillarsO.schematic", true));
|
||||
this.complexHalls.add(new DungeonGenerator(0, "buggyTopEntry1.schematic", true));
|
||||
this.complexHalls.add(new DungeonGenerator(0, "exitRuinsWithHiddenDoor.schematic", true));
|
||||
this.complexHalls.add(new DungeonGenerator(0, "hallwayHiddenTreasure.schematic", true));
|
||||
this.complexHalls.add(new DungeonGenerator(0, "hallwayHiddenTreasure.schematic", false));
|
||||
this.complexHalls.add(new DungeonGenerator(0, "mediumPillarStairs.schematic", true));
|
||||
this.complexHalls.add(new DungeonGenerator(0, "ruinsO.schematic", true));
|
||||
this.complexHalls.add(new DungeonGenerator(0, "pitStairs.schematic", true));
|
||||
|
||||
@@ -120,7 +120,7 @@ public class MobObelisk extends EntityFlying implements IMob
|
||||
|
||||
|
||||
|
||||
EntityPlayer entityPlayer = this.worldObj.getClosestPlayerToEntity(this, 30);
|
||||
EntityPlayer entityPlayer = this.worldObj.getClosestPlayerToEntity(this, 35);
|
||||
|
||||
if(entityPlayer != null)
|
||||
{
|
||||
@@ -141,13 +141,13 @@ public class MobObelisk extends EntityFlying implements IMob
|
||||
}
|
||||
if(aggro<470)
|
||||
{
|
||||
if(rand.nextInt(11)>this.textureState)
|
||||
if(rand.nextInt(11)>this.textureState||this.aggro>=300||rand.nextInt(13)>this.textureState)
|
||||
{
|
||||
aggro++;
|
||||
}
|
||||
|
||||
|
||||
if(this.worldObj.provider instanceof pocketProvider)
|
||||
if(this.worldObj.provider instanceof pocketProvider||this.worldObj.getClosestPlayerToEntity(this, 5)!=null)
|
||||
{
|
||||
|
||||
aggro++;
|
||||
@@ -185,14 +185,18 @@ public class MobObelisk extends EntityFlying implements IMob
|
||||
dimHelper.instance.teleportToPocket(worldObj, link, entityPlayer);
|
||||
|
||||
entityPlayer.worldObj.playSoundAtEntity(entityPlayer,"mods.DimensionalDoors.sounds.wylkermaxcrack",13, 1);
|
||||
if(!(this.worldObj.provider instanceof LimboProvider ||this.worldObj.provider instanceof pocketProvider))
|
||||
{
|
||||
this.setDead();
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
if(!(this.worldObj.provider instanceof LimboProvider))
|
||||
if(!(this.worldObj.provider instanceof LimboProvider || this.worldObj.getClosestPlayerToEntity(this, 5)!=null)||this.aggro>300)
|
||||
{
|
||||
|
||||
for (int i = 0; i < -1+this.textureState/3; ++i)
|
||||
for (int i = 0; i < -1+this.textureState/2; ++i)
|
||||
{
|
||||
entityPlayer.worldObj.spawnParticle("portal", entityPlayer.posX + (this.rand.nextDouble() - 0.5D) * (double)this.width, entityPlayer.posY + this.rand.nextDouble() * (double)entityPlayer.height - 0.75D, entityPlayer.posZ + (this.rand.nextDouble() - 0.5D) * (double)entityPlayer.width, (this.rand.nextDouble() - 0.5D) * 2.0D, -this.rand.nextDouble(), (this.rand.nextDouble() - 0.5D) * 2.0D);
|
||||
}
|
||||
@@ -321,6 +325,10 @@ public class MobObelisk extends EntityFlying implements IMob
|
||||
}
|
||||
public boolean attackEntityFrom(DamageSource par1DamageSource, int par2)
|
||||
{
|
||||
if(!(par1DamageSource==DamageSource.inWall))
|
||||
{
|
||||
this.aggro=400;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
public void faceEntity(Entity par1Entity, float par2, float par3)
|
||||
|
||||
Binary file not shown.
|
Before Width: | Height: | Size: 3.2 KiB After Width: | Height: | Size: 3.1 KiB |
Binary file not shown.
Binary file not shown.
|
Before Width: | Height: | Size: 3.2 KiB After Width: | Height: | Size: 3.1 KiB |
Reference in New Issue
Block a user