generated from stpv221/u31-workspace
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
70 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
66 changes: 66 additions & 0 deletions
66
src/main/java/net/minecraft/entity/projectile/EntityRock.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
package net.minecraft.entity.projectile; | ||
|
||
import net.minecraft.entity.EntityLivingBase; | ||
import net.minecraft.entity.monster.EntityIronGolem; | ||
import net.minecraft.util.DamageSource; | ||
import net.minecraft.util.EnumParticleTypes; | ||
import net.minecraft.util.MovingObjectPosition; | ||
import net.minecraft.world.World; | ||
|
||
/**+ | ||
* This portion of EaglercraftX contains deobfuscated Minecraft 1.8 source code. | ||
* | ||
* Minecraft 1.8.8 bytecode is (c) 2015 Mojang AB. "Do not distribute!" | ||
* Mod Coder Pack v9.18 deobfuscation configs are (c) Copyright by the MCP Team | ||
* | ||
* EaglercraftX 1.8 patch files (c) 2022-2024 lax1dude, ayunami2000. All Rights Reserved. | ||
* | ||
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND | ||
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED | ||
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. | ||
* IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, | ||
* INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT | ||
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR | ||
* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, | ||
* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) | ||
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE | ||
* POSSIBILITY OF SUCH DAMAGE. | ||
* | ||
*/ | ||
public class EntityRock extends EntityThrowable { | ||
public EntityRock(World worldIn) { | ||
super(worldIn); | ||
} | ||
|
||
public EntityRock(World worldIn, EntityLivingBase throwerIn) { | ||
super(worldIn, throwerIn); | ||
} | ||
|
||
public EntityRock(World worldIn, double x, double y, double z) { | ||
super(worldIn, x, y, z); | ||
} | ||
|
||
/**+ | ||
* Called when this EntityThrowable hits a block or entity. | ||
*/ | ||
protected void onImpact(MovingObjectPosition parMovingObjectPosition) { | ||
if (parMovingObjectPosition.entityHit != null) { | ||
byte b0 = 5; | ||
if (parMovingObjectPosition.entityHit instanceof EntityIronGolem) { | ||
b0 = 7; | ||
} | ||
|
||
parMovingObjectPosition.entityHit.attackEntityFrom(DamageSource.causeThrownDamage(this, this.getThrower()), | ||
(float) b0); | ||
} | ||
|
||
for (int i = 0; i < 8; ++i) { | ||
this.worldObj.spawnParticle(EnumParticleTypes.SNOWBALL, this.posX, this.posY, this.posZ, 0.0D, 0.0D, 0.0D, | ||
new int[0]); | ||
} | ||
|
||
if (!this.worldObj.isRemote) { | ||
this.setDead(); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters