mirror of
https://github.com/HbmMods/Hbm-s-Nuclear-Tech-GIT.git
synced 2026-01-25 10:32:49 +00:00
77 lines
2.3 KiB
Java
77 lines
2.3 KiB
Java
package com.hbm.items.armor;
|
|
|
|
import java.util.List;
|
|
|
|
import com.hbm.extprop.HbmPlayerProps;
|
|
import com.hbm.inventory.fluid.FluidType;
|
|
import com.hbm.packet.PacketDispatcher;
|
|
import com.hbm.packet.toclient.AuxParticlePacketNT;
|
|
|
|
import cpw.mods.fml.common.network.NetworkRegistry.TargetPoint;
|
|
import cpw.mods.fml.relauncher.Side;
|
|
import cpw.mods.fml.relauncher.SideOnly;
|
|
import net.minecraft.entity.Entity;
|
|
import net.minecraft.entity.player.EntityPlayer;
|
|
import net.minecraft.item.ItemStack;
|
|
import net.minecraft.nbt.NBTTagCompound;
|
|
import net.minecraft.util.Vec3;
|
|
import net.minecraft.world.World;
|
|
|
|
public class JetpackBooster extends JetpackFueledBase {
|
|
|
|
public JetpackBooster(FluidType fuel, int maxFuel) {
|
|
super(fuel, maxFuel);
|
|
}
|
|
|
|
@Override
|
|
public String getArmorTexture(ItemStack stack, Entity entity, int slot, String type) {
|
|
return "hbm:textures/models/JetPack.png";
|
|
}
|
|
|
|
public void onArmorTick(World world, EntityPlayer player, ItemStack stack) {
|
|
|
|
HbmPlayerProps props = HbmPlayerProps.getData(player);
|
|
|
|
if(!world.isRemote) {
|
|
|
|
if(getFuel(stack) > 0 && props.isJetpackActive()) {
|
|
|
|
NBTTagCompound data = new NBTTagCompound();
|
|
data.setString("type", "jetpack");
|
|
data.setInteger("player", player.getEntityId());
|
|
data.setInteger("mode", 1);
|
|
PacketDispatcher.wrapper.sendToAllAround(new AuxParticlePacketNT(data, player.posX, player.posY, player.posZ), new TargetPoint(world.provider.dimensionId, player.posX, player.posY, player.posZ, 100));
|
|
}
|
|
}
|
|
|
|
if(getFuel(stack) > 0 && props.isJetpackActive()) {
|
|
|
|
if(player.motionY < 0.6D)
|
|
player.motionY += 0.1D;
|
|
|
|
Vec3 look = player.getLookVec();
|
|
|
|
if(Vec3.createVectorHelper(player.motionX, player.motionY, player.motionZ).lengthVector() < 5) {
|
|
player.motionX += look.xCoord * 0.25;
|
|
player.motionY += look.yCoord * 0.25;
|
|
player.motionZ += look.zCoord * 0.25;
|
|
|
|
if(look.yCoord > 0)
|
|
player.fallDistance = 0;
|
|
}
|
|
|
|
world.playSoundEffect(player.posX, player.posY, player.posZ, "hbm:weapon.flamethrowerShoot", 0.25F, 1.0F);
|
|
this.useUpFuel(player, stack, 1);
|
|
}
|
|
}
|
|
|
|
@SideOnly(Side.CLIENT)
|
|
public void addInformation(ItemStack stack, EntityPlayer player, List list, boolean ext) {
|
|
|
|
list.add("High-powered vectorized jetpack.");
|
|
list.add("Highly increased fuel consumption.");
|
|
|
|
super.addInformation(stack, player, list, ext);
|
|
}
|
|
}
|