mirror of
https://github.com/HbmMods/Hbm-s-Nuclear-Tech-GIT.git
synced 2026-01-25 10:32:49 +00:00
203 lines
10 KiB
Java
203 lines
10 KiB
Java
package com.hbm.lib;
|
|
|
|
import com.hbm.entity.projectile.EntityBullet;
|
|
import com.hbm.entity.projectile.EntityDischarge;
|
|
import com.hbm.entity.projectile.EntityFire;
|
|
import com.hbm.entity.projectile.EntityLN2;
|
|
import com.hbm.entity.projectile.EntityLaserBeam;
|
|
import com.hbm.entity.projectile.EntityMinerBeam;
|
|
import com.hbm.entity.projectile.EntityPlasmaBeam;
|
|
|
|
import net.minecraft.entity.Entity;
|
|
import net.minecraft.util.DamageSource;
|
|
import net.minecraft.util.EntityDamageSourceIndirect;
|
|
|
|
public class ModDamageSource extends DamageSource {
|
|
|
|
public static DamageSource nuclearBlast = (new DamageSource("nuclearBlast")).setExplosion();
|
|
public static DamageSource mudPoisoning = (new DamageSource("mudPoisoning")).setDamageBypassesArmor();
|
|
public static DamageSource acid = (new DamageSource("acid")).setDamageBypassesArmor();
|
|
public static DamageSource euthanizedSelf = (new DamageSource("euthanizedSelf")).setDamageBypassesArmor();
|
|
public static DamageSource euthanizedSelf2 = (new DamageSource("euthanizedSelf2")).setDamageBypassesArmor();
|
|
public static DamageSource tauBlast = (new DamageSource("tauBlast")).setDamageBypassesArmor();
|
|
public static DamageSource radiation = (new DamageSource("radiation")).setDamageBypassesArmor();
|
|
public static DamageSource digamma = (new DamageSource("digamma")).setDamageIsAbsolute().setDamageBypassesArmor().setDamageAllowedInCreativeMode();
|
|
public static DamageSource suicide = (new DamageSource("suicide")).setProjectile();
|
|
public static DamageSource teleporter = (new DamageSource("teleporter")).setDamageIsAbsolute();
|
|
public static DamageSource cheater = (new DamageSource("cheater")).setDamageIsAbsolute().setDamageBypassesArmor().setDamageAllowedInCreativeMode();
|
|
public static DamageSource rubble = (new DamageSource("rubble")).setProjectile();
|
|
public static DamageSource shrapnel = (new DamageSource("shrapnel")).setProjectile();
|
|
public static DamageSource blackhole = (new DamageSource("blackhole")).setDamageIsAbsolute().setDamageBypassesArmor();
|
|
public static DamageSource turbofan = (new DamageSource("blender")).setDamageIsAbsolute().setDamageBypassesArmor();
|
|
public static DamageSource meteorite = (new DamageSource("meteorite")).setDamageIsAbsolute().setDamageBypassesArmor();
|
|
public static DamageSource boxcar = (new DamageSource("boxcar")).setDamageIsAbsolute().setDamageBypassesArmor();
|
|
public static DamageSource boat = (new DamageSource("boat")).setDamageIsAbsolute().setDamageBypassesArmor();
|
|
public static DamageSource building = (new DamageSource("building")).setDamageIsAbsolute().setDamageBypassesArmor();
|
|
public static DamageSource taint = (new DamageSource("taint")).setDamageIsAbsolute().setDamageBypassesArmor();
|
|
public static DamageSource ams = (new DamageSource("ams")).setDamageIsAbsolute().setDamageBypassesArmor();
|
|
public static DamageSource amsCore = (new DamageSource("amsCore")).setDamageIsAbsolute().setDamageBypassesArmor();
|
|
public static DamageSource broadcast = (new DamageSource("broadcast")).setDamageIsAbsolute().setDamageBypassesArmor();
|
|
public static DamageSource bang = (new DamageSource("bang")).setDamageIsAbsolute().setDamageBypassesArmor();
|
|
public static DamageSource pc = (new DamageSource("pc")).setDamageIsAbsolute().setDamageBypassesArmor();
|
|
public static DamageSource cloud = (new DamageSource("cloud")).setDamageIsAbsolute().setDamageBypassesArmor();
|
|
public static DamageSource lead = (new DamageSource("lead")).setDamageIsAbsolute().setDamageBypassesArmor();
|
|
public static DamageSource enervation = (new DamageSource("enervation")).setDamageIsAbsolute().setDamageBypassesArmor();
|
|
public static DamageSource electricity = (new DamageSource("electricity")).setDamageIsAbsolute().setDamageBypassesArmor();
|
|
public static DamageSource exhaust = (new DamageSource("exhaust")).setDamageIsAbsolute().setDamageBypassesArmor();
|
|
public static DamageSource spikes = (new DamageSource("spikes")).setDamageBypassesArmor();
|
|
public static DamageSource lunar = (new DamageSource("lunar")).setDamageIsAbsolute().setDamageBypassesArmor();
|
|
public static DamageSource monoxide = (new DamageSource("monoxide")).setDamageIsAbsolute().setDamageBypassesArmor();
|
|
public static DamageSource asbestos = (new DamageSource("asbestos")).setDamageIsAbsolute().setDamageBypassesArmor();
|
|
public static DamageSource blacklung = (new DamageSource("blacklung")).setDamageIsAbsolute().setDamageBypassesArmor();
|
|
public static DamageSource mku = (new DamageSource("mku")).setDamageIsAbsolute().setDamageBypassesArmor();
|
|
public static DamageSource vacuum = (new DamageSource("vacuum")).setDamageIsAbsolute().setDamageBypassesArmor();
|
|
public static DamageSource overdose = (new DamageSource("overdose")).setDamageIsAbsolute().setDamageBypassesArmor();
|
|
|
|
public static final String s_bullet = "revolverBullet";
|
|
public static final String s_emplacer = "chopperBullet";
|
|
public static final String s_tau = "tau";
|
|
public static final String s_combineball = "cmb";
|
|
public static final String s_zomg_prefix = "subAtomic";
|
|
public static final String s_euthanized = "euthanized";
|
|
public static final String s_emp = "electrified";
|
|
public static final String s_flamethrower = "flamethrower";
|
|
public static final String s_immolator = "plasma";
|
|
public static final String s_cryolator = "ice";
|
|
public static final String s_laser = "laser";
|
|
|
|
public ModDamageSource(String p_i1566_1_) {
|
|
super(p_i1566_1_);
|
|
}
|
|
|
|
public static DamageSource causeBulletDamage(EntityBullet ent, Entity hit) {
|
|
return (new EntityDamageSourceIndirect(s_bullet, ent, hit)).setProjectile();
|
|
}
|
|
|
|
public static DamageSource causeBulletDamage(Entity base, Entity ent) {
|
|
return (new EntityDamageSourceIndirect(s_bullet, base, ent)).setProjectile();
|
|
}
|
|
|
|
public static DamageSource causeDisplacementDamage(Entity ent, Entity hit) {
|
|
return (new EntityDamageSourceIndirect(s_emplacer, ent, hit)).setProjectile();
|
|
}
|
|
|
|
public static DamageSource causeTauDamage(Entity ent, Entity hit) {
|
|
return (new EntityDamageSourceIndirect(s_tau, ent, hit)).setProjectile().setDamageBypassesArmor();
|
|
}
|
|
|
|
public static DamageSource causeCombineDamage(Entity ent, Entity hit) {
|
|
return (new EntityDamageSourceIndirect(s_combineball, ent, hit)).setProjectile().setDamageBypassesArmor();
|
|
}
|
|
|
|
public static DamageSource causeSubatomicDamage(Entity ent, Entity hit) {
|
|
return (new EntityDamageSourceIndirect(s_zomg_prefix + (ent.worldObj.rand.nextInt(5) + 1), ent, hit)).setProjectile().setDamageBypassesArmor();
|
|
}
|
|
|
|
public static DamageSource euthanized(Entity ent, Entity hit) {
|
|
return (new EntityDamageSourceIndirect(s_euthanized, ent, hit)).setDamageBypassesArmor();
|
|
}
|
|
|
|
public static DamageSource causeDischargeDamage(EntityDischarge ent, Entity hit) {
|
|
return (new EntityDamageSourceIndirect(s_emp, ent, hit)).setDamageBypassesArmor();
|
|
}
|
|
|
|
public static DamageSource causeFireDamage(EntityFire ent, Entity hit) {
|
|
return (new EntityDamageSourceIndirect(s_flamethrower, ent, hit)).setFireDamage().setDamageBypassesArmor();
|
|
}
|
|
|
|
public static DamageSource causePlasmaDamage(EntityPlasmaBeam ent, Entity hit) {
|
|
return (new EntityDamageSourceIndirect(s_immolator, ent, hit)).setDamageBypassesArmor();
|
|
}
|
|
|
|
public static DamageSource causeIceDamage(EntityLN2 ent, Entity hit) {
|
|
return (new EntityDamageSourceIndirect(s_cryolator, ent, hit)).setDamageBypassesArmor();
|
|
}
|
|
|
|
public static DamageSource causeLaserDamage(EntityLaserBeam ent, Entity hit) {
|
|
return (new EntityDamageSourceIndirect(s_laser, ent, hit)).setDamageBypassesArmor();
|
|
}
|
|
|
|
public static DamageSource causeLaserDamage(EntityMinerBeam ent, Entity hit) {
|
|
return (new EntityDamageSourceIndirect("s_laser", ent, hit)).setDamageBypassesArmor();
|
|
}
|
|
|
|
public static boolean getIsBullet(DamageSource source) {
|
|
if(source instanceof EntityDamageSourceIndirect) {
|
|
return ((EntityDamageSourceIndirect) source).damageType.equals("revolverBullet");
|
|
}
|
|
return false;
|
|
}
|
|
|
|
public static boolean getIsEmplacer(DamageSource source) {
|
|
if(source instanceof EntityDamageSourceIndirect) {
|
|
return ((EntityDamageSourceIndirect) source).damageType.equals("chopperBullet");
|
|
}
|
|
return false;
|
|
}
|
|
|
|
public static boolean getIsTau(DamageSource source) {
|
|
if(source instanceof EntityDamageSourceIndirect) {
|
|
return ((EntityDamageSourceIndirect) source).damageType.equals("tau");
|
|
}
|
|
return false;
|
|
}
|
|
|
|
public static boolean getIsPoison(DamageSource source) {
|
|
if(source instanceof EntityDamageSourceIndirect) {
|
|
return ((EntityDamageSourceIndirect) source).damageType.equals("euthanized");
|
|
}
|
|
return false;
|
|
}
|
|
|
|
public static boolean getIsCmb(DamageSource source) {
|
|
if(source instanceof EntityDamageSourceIndirect) {
|
|
return ((EntityDamageSourceIndirect) source).damageType.equals("cmb");
|
|
}
|
|
return false;
|
|
}
|
|
|
|
public static boolean getIsSubatomic(DamageSource source) {
|
|
if(source instanceof EntityDamageSourceIndirect) {
|
|
String s = ((EntityDamageSourceIndirect) source).damageType;
|
|
return s.startsWith("subAtomic");
|
|
}
|
|
return false;
|
|
}
|
|
|
|
public static boolean getIsDischarge(DamageSource source) {
|
|
if(source instanceof EntityDamageSourceIndirect) {
|
|
return ((EntityDamageSourceIndirect) source).damageType.equals("electrified");
|
|
}
|
|
return false;
|
|
}
|
|
|
|
public static boolean getIsFire(DamageSource source) {
|
|
if(source instanceof EntityDamageSourceIndirect) {
|
|
return ((EntityDamageSourceIndirect) source).damageType.equals("flamethrower");
|
|
}
|
|
return false;
|
|
}
|
|
|
|
public static boolean getIsPlasma(DamageSource source) {
|
|
if(source instanceof EntityDamageSourceIndirect) {
|
|
return ((EntityDamageSourceIndirect) source).damageType.equals("plasma");
|
|
}
|
|
return false;
|
|
}
|
|
|
|
public static boolean getIsLiquidNitrogen(DamageSource source) {
|
|
if(source instanceof EntityDamageSourceIndirect) {
|
|
return ((EntityDamageSourceIndirect) source).damageType.equals("ice");
|
|
}
|
|
return false;
|
|
}
|
|
|
|
public static boolean getIsLaser(DamageSource source) {
|
|
if(source instanceof EntityDamageSourceIndirect) {
|
|
return ((EntityDamageSourceIndirect) source).damageType.equals("laser");
|
|
}
|
|
return false;
|
|
}
|
|
|
|
}
|