469 lines
13 KiB
Java

package com.hbm.items.special;
import java.util.List;
import com.hbm.config.GeneralConfig;
import com.hbm.items.ModItems;
import com.hbm.main.MainRegistry;
import com.hbm.util.ArmorUtil;
import com.hbm.util.I18nUtil;
import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.item.EnumRarity;
import net.minecraft.item.Item;
import net.minecraft.item.ItemStack;
import net.minecraft.util.EnumChatFormatting;
public class ItemCustomLore extends Item {
EnumRarity rarity;
@Override
public void addInformation(ItemStack itemstack, EntityPlayer player, List list, boolean bool) {
String unloc = this.getUnlocalizedName() + ".desc";
String loc = I18nUtil.resolveKey(unloc);
if(!unloc.equals(loc)) {
String[] locs = loc.split("\\$");
for(String s : locs) {
list.add(s);
}
}
if(this == ModItems.flame_pony)
{
//list.add("Blue horse beats yellow horse, look it up!");
list.add("Yellow horse beats blue horse, that's a proven fact!");
}
if(this == ModItems.flame_conspiracy)
{
list.add("Steel beams can't melt jet fuel!");
}
if(this == ModItems.flame_politics)
{
list.add("Donald Duck will build the wall!");
}
if(this == ModItems.flame_opinion)
{
list.add("Well, I like it...");
}
if(this == ModItems.ingot_neptunium)
{
if(MainRegistry.polaroidID == 11) {
list.add("Woo, scary!");
} else
list.add("That one's my favourite!");
}
if(this == ModItems.pellet_rtg)
{
if(MainRegistry.polaroidID == 11)
list.add("Contains ~100% Pu238 oxide.");
else
list.add("RTG fuel pellet for infinite energy! (almost)");
}
if(this == ModItems.pellet_rtg_weak)
{
if(MainRegistry.polaroidID == 11)
list.add("Meh.");
else
list.add("Cheaper and weaker pellet, now with more U238!");
}
if(this == ModItems.pellet_rtg_polonium)
{
if(MainRegistry.polaroidID == 11)
list.add("Polonium 4 U and me.");
else
list.add("More powderful RTG pellet, made from finest polonium!");
}
if(this == ModItems.pellet_cluster)
{
list.add("Used in multi purpose bombs:");
list.add("Adds some extra boom!");
}
if(this == ModItems.powder_fire)
{
list.add("Used in multi purpose bombs:");
list.add("Incendiary bombs are fun!");
}
if(this == ModItems.powder_poison)
{
list.add("Used in multi purpose bombs:");
list.add("Warning: Poisonous!");
}
if(this == ModItems.pellet_gas)
{
list.add("Used in multi purpose bombs:");
list.add("*cough cough* Halp pls!");
}
if(this == ModItems.igniter)
{
list.add("(Used by right-clicking the Prototype)");
list.add("It's a green metal handle with a");
list.add("bright red button and a small lid.");
list.add("At the bottom, the initials N.E. are");
list.add("engraved. Whoever N.E. was, he had");
list.add("a great taste in shades of green.");
}
if(this == ModItems.rod_quad_euphemium)
{
list.add("A quad fuel rod which contains a");
list.add("very small ammount of a strange new element.");
}
if(this == ModItems.ingot_euphemium)
{
list.add("A very special and yet strange element.");
}
if(this == ModItems.nugget_euphemium)
{
list.add("A small piece of a pink metal.");
list.add("It's properties are still unknown,");
list.add("DEAL WITH IT carefully.");
}
if(this == ModItems.powder_euphemium)
{
list.add("Pulverized pink.");
list.add("Tastes like strawberries.");
}
if(this == ModItems.watch)
{
list.add("A small blue pocket watch.");
list.add("It's glass has a few cracks in it,");
list.add("and some shards are missing.");
list.add("It stopped ticking at 2:34.");
}
if(this == ModItems.fuse)
{
list.add("This item is needed for every large");
list.add("nuclear reactor, as it allows the");
list.add("reactor to generate electricity and");
list.add("use up it's fuel. Removing the fuse");
list.add("from a reactor will instantly shut");
list.add("it down.");
}
if(this == ModItems.rod_lithium)
{
list.add("Turns into Tritium Rod");
}
if(this == ModItems.rod_dual_lithium)
{
list.add("Turns into Dual Tritium Rod");
}
if(this == ModItems.rod_quad_lithium)
{
list.add("Turns into Quad Tritium Rod");
}
if(this == ModItems.tritium_deuterium_cake)
{
list.add("Not actual cake, but great");
list.add("universal fusion fuel!");
}
if(this == ModItems.dust)
{
if(MainRegistry.polaroidID == 11)
list.add("Another one bites the dust!");
else
list.add("I hate dust!");
}
if(this == ModItems.ingot_combine_steel)
{
/*list.add("\"I mean, it's a verb for crying out loud.");
list.add("The aliens aren't verbs. They're nouns!\"");
list.add("\"Actually, I think it's also the name");
list.add("of some kind of farm equipment, like a");
list.add("thresher or something.\"");
list.add("\"That's even worse. Now we have a word");
list.add("that could mean 'to mix things together',");
list.add("a piece of farm equipment, and let's see...");
list.add("oh yea, it can also mean 'the most advanced");
list.add("form of life in the known universe'.\"");
list.add("\"So?\"");
list.add("\"'So?' C'mon man, they're ALIENS!\"");*/
list.add("*insert Civil Protection reference here*");
}
if(this == ModItems.gun_super_shotgun)
{
list.add("It's super broken!");
}
if(this == ModItems.screwdriver)
{
list.add("Could be used instead of a fuse...");
}
if(this == ModItems.overfuse)
{
list.add("Say what?");
}
if(this == ModItems.crystal_horn)
{
if(MainRegistry.polaroidID == 11)
list.add("An actual horn.");
else
list.add("Not an actual horn.");
}
if(this == ModItems.crystal_charred)
{
if(MainRegistry.polaroidID == 11)
list.add("Also a real horn. Weird, right?");
else
list.add("High quality silicate, slightly burned.");
}
if(this == ModItems.burnt_bark)
{
list.add("A piece of bark from an exploded golden oak tree.");
}
if(this == ModItems.crystal_energy)
{
list.add("Densely packed energy powder.");
list.add("Not edible.");
}
if(this == ModItems.pellet_coolant)
{
list.add("Required for cyclotron operation.");
list.add("Do NOT operate cyclotron without it!");
}
if(this == ModItems.entanglement_kit)
{
list.add("Teleporter crafting item.");
list.add("Enables dimension-shifting via");
list.add("beryllium-enhanced resource scanner.");
}
if(this == ModItems.ams_focus_limiter)
{
list.add("Maximum performance for restriction field:");
list.add("Standard cooling, no energy bonus.");
}
if(this == ModItems.ams_focus_booster)
{
list.add("Weaker restriction field and core energy injection:");
list.add("More heat generation, extra energy.");
}
if(this == ModItems.ams_muzzle)
{
list.add("...it emits an energy-beam thingy.");
}
if(this == ModItems.canister_fuel)
{
list.add("All hail the spout!");
}
if(this == ModItems.custom_fall)
{
list.add("That's what you've aaaaaaall been waiting for!");
list.add("Makes bomb drop upon activation");
}
if(this == ModItems.pin)
{
list.add("Can be used with a screwdriver to pick locks.");
if(ArmorUtil.checkArmorPiece(player, ModItems.jackt, 2) || ArmorUtil.checkArmorPiece(player, ModItems.jackt2, 2))
list.add("Success rate of picking standard lock is 100%!");
else
list.add("Success rate of picking standard lock is ~10%");
}
if(this == ModItems.key_red)
{
if(MainRegistry.polaroidID == 11) {
list.add(EnumChatFormatting.DARK_RED + "" + EnumChatFormatting.BOLD + "e");
} else {
list.add("Explore the other side.");
}
}
if(this == ModItems.missile_skin_camo)
{
list.add("I can't find my missile anymore!");
}
if(this == ModItems.missile_skin_desert)
{
list.add("Looks like sand, tastes like metal.");
}
if(this == ModItems.missile_skin_flames)
{
list.add("Radical!");
}
if(this == ModItems.missile_skin_manly_pink)
{
list.add("Pink, the manliest color of them all.");
}
if(this == ModItems.missile_skin_orange_insulation)
{
list.add("Not an orange juice bottle;");
list.add("do not attempt to drink contents.");
}
if(this == ModItems.missile_skin_sleek)
{
list.add("Chevrons are cool!");
}
if(this == ModItems.missile_skin_soviet_glory)
{
list.add("услуга перевода недоступна");
}
if(this == ModItems.missile_skin_soviet_stank)
{
list.add("This one's got the real 60's stank to it.");
}
if(this == ModItems.missile_skin_metal)
{
list.add("Metal sheets and metal bolts, reinforced with metal.");
}
if(this == ModItems.ingot_asbestos)
{
list.add(EnumChatFormatting.ITALIC + "\"Filled with life, self-doubt and asbestos. That comes with the air.\"");
}
if(this == ModItems.powder_asbestos)
{
list.add(EnumChatFormatting.ITALIC + "\"Sniffffffff- MHHHHHHMHHHHHHHHH\"");
}
if(this == ModItems.ingot_fiberglass)
{
list.add("High in fiber, high in glass. Everything the body needs.");
}
if(this == ModItems.missile_soyuz_lander)
{
list.add("Doubles as a crappy lander!");
}
if(this == ModItems.ingot_schraranium)
{
if(GeneralConfig.enableBabyMode)
list.add("shut up peer please for the love of god shut up i can't stand it any longer shut up shut up shut up shut up shut up");
else
list.add("Made from uranium in a schrabidium transmutator");
}
if(this == ModItems.mech_key)
{
list.add("It pulses with power.");
}
if(this == ModItems.nugget_mox_fuel) {
list.add("Moxie says: " + EnumChatFormatting.BOLD + "TAX EVASION.");
}
if(this == ModItems.billet_mox_fuel) {
list.add(EnumChatFormatting.ITALIC + "Pocket-Moxie!");
}
}
@Override
public EnumRarity getRarity(ItemStack p_77613_1_) {
if(this == ModItems.nugget_euphemium || this == ModItems.ingot_euphemium ||
this == ModItems.rod_quad_euphemium || this == ModItems.plate_euphemium ||
this == ModItems.watch || this == ModItems.powder_iodine ||
this == ModItems.powder_thorium || this == ModItems.powder_neodymium ||
this == ModItems.powder_neptunium || this == ModItems.powder_astatine ||
this == ModItems.powder_caesium || this == ModItems.powder_strontium ||
this == ModItems.powder_cobalt || this == ModItems.powder_bromine ||
this == ModItems.powder_niobium || this == ModItems.powder_tennessine ||
this == ModItems.powder_cerium || this == ModItems.powder_euphemium)
{
return EnumRarity.epic;
}
if(this == ModItems.rod_schrabidium || this == ModItems.rod_dual_schrabidium ||
this == ModItems.rod_quad_schrabidium || this == ModItems.ingot_schrabidium ||
this == ModItems.nugget_schrabidium || this == ModItems.plate_schrabidium ||
this == ModItems.cell_sas3 || this == ModItems.powder_schrabidium ||
this == ModItems.wire_schrabidium || this == ModItems.circuit_schrabidium ||
this == ModItems.gun_revolver_schrabidium_ammo || this == ModItems.ingot_saturnite ||
this == ModItems.plate_saturnite || this == ModItems.ingot_schrabidate ||
this == ModItems.powder_schrabidate || this == ModItems.ingot_schraranium ||
this == ModItems.crystal_schraranium)
{
return EnumRarity.rare;
}
if(this == ModItems.gun_revolver_cursed_ammo || this == ModItems.plate_paa ||
this == ModItems.ammo_566_gold || this == ModItems.powder_power ||
this == ModItems.ingot_australium || this == ModItems.ingot_weidanium ||
this == ModItems.ingot_reiium || this == ModItems.ingot_unobtainium ||
this == ModItems.ingot_daffergon || this == ModItems.ingot_verticium ||
this == ModItems.nugget_australium || this == ModItems.nugget_weidanium ||
this == ModItems.nugget_reiium || this == ModItems.nugget_unobtainium ||
this == ModItems.nugget_daffergon || this == ModItems.nugget_verticium ||
this == ModItems.powder_australium || this == ModItems.powder_weidanium ||
this == ModItems.powder_reiium || this == ModItems.powder_unobtainium ||
this == ModItems.powder_daffergon || this == ModItems.powder_verticium)
{
return EnumRarity.uncommon;
}
return this.rarity != null ? rarity : EnumRarity.common;
}
@Override
@SideOnly(Side.CLIENT)
public boolean hasEffect(ItemStack p_77636_1_)
{
if(this == ModItems.rune_isa ||
this == ModItems.rune_dagaz ||
this == ModItems.rune_hagalaz ||
this == ModItems.rune_jera ||
this == ModItems.rune_thurisaz ||
this == ModItems.egg_balefire_shard ||
this == ModItems.egg_balefire) {
return true;
}
return false;
}
public ItemCustomLore setRarity(EnumRarity rarity) {
this.rarity = rarity;
return this;
}
}