Initiating Omega protocol.

This commit is contained in:
WayofTime 2015-01-10 12:23:41 -05:00
parent beab450a62
commit fd437fb4ca
26 changed files with 1934 additions and 37 deletions

View file

@ -0,0 +1,32 @@
package WayofTime.alchemicalWizardry.common.items.armour;
import net.minecraft.client.model.ModelBiped;
import net.minecraft.entity.Entity;
import net.minecraft.item.ItemStack;
import WayofTime.alchemicalWizardry.common.renderer.model.ModelOmegaWind;
public class OmegaArmourWind extends OmegaArmour
{
public OmegaArmourWind(int armorType)
{
super(armorType);
}
@Override
public String getArmorTexture(ItemStack stack, Entity entity, int slot, String type)
{
return "alchemicalwizardry:models/armor/OmegaWind.png";
}
@Override
public ModelBiped getChestModel()
{
return new ModelOmegaWind(1.0f, true, true, false, true);
}
@Override
public ModelBiped getLegsModel()
{
return new ModelOmegaWind(0.5f, false, false, true, false);
}
}