diff options
author | Mattes D <github@xoft.cz> | 2014-04-28 12:32:02 +0200 |
---|---|---|
committer | Mattes D <github@xoft.cz> | 2014-04-28 12:32:02 +0200 |
commit | c0630516459ec59139b60173e0582900115a5614 (patch) | |
tree | 46a3beef2f57ea2ff59bd487f98e82d18f406935 /src/Entities/ThrownSnowballEntity.cpp | |
parent | Fixed warnings. (diff) | |
parent | Fixed projectile source filenames, indentations (diff) | |
download | cuberite-c0630516459ec59139b60173e0582900115a5614.tar cuberite-c0630516459ec59139b60173e0582900115a5614.tar.gz cuberite-c0630516459ec59139b60173e0582900115a5614.tar.bz2 cuberite-c0630516459ec59139b60173e0582900115a5614.tar.lz cuberite-c0630516459ec59139b60173e0582900115a5614.tar.xz cuberite-c0630516459ec59139b60173e0582900115a5614.tar.zst cuberite-c0630516459ec59139b60173e0582900115a5614.zip |
Diffstat (limited to 'src/Entities/ThrownSnowballEntity.cpp')
-rw-r--r-- | src/Entities/ThrownSnowballEntity.cpp | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/src/Entities/ThrownSnowballEntity.cpp b/src/Entities/ThrownSnowballEntity.cpp new file mode 100644 index 000000000..427f630f7 --- /dev/null +++ b/src/Entities/ThrownSnowballEntity.cpp @@ -0,0 +1,48 @@ +#include "Globals.h" // NOTE: MSVC stupidness requires this to be the same across all modules + +#include "ThrownSnowballEntity.h" +#include "../World.h" + + + + + +cThrownSnowballEntity::cThrownSnowballEntity(cEntity * a_Creator, double a_X, double a_Y, double a_Z, const Vector3d & a_Speed) : + super(pkSnowball, a_Creator, a_X, a_Y, a_Z, 0.25, 0.25) +{ + SetSpeed(a_Speed); +} + + + + + +void cThrownSnowballEntity::OnHitSolidBlock(const Vector3d & a_HitPos, eBlockFace a_HitFace) +{ + Destroy(); +} + + + + + +void cThrownSnowballEntity::OnHitEntity(cEntity & a_EntityHit, const Vector3d & a_HitPos) +{ + int TotalDamage = 0; + if (a_EntityHit.IsMob()) + { + cMonster::eType MobType = ((cMonster &) a_EntityHit).GetMobType(); + if (MobType == cMonster::mtBlaze) + { + TotalDamage = 3; + } + else if (MobType == cMonster::mtEnderDragon) + { + TotalDamage = 1; + } + } + // TODO: If entity is Ender Crystal, destroy it + a_EntityHit.TakeDamage(dtRangedAttack, this, TotalDamage, 1); + + Destroy(true); +} |