當前位置: 首頁>>代碼示例>>Java>>正文


Java EntitySheep.setFleeceColor方法代碼示例

本文整理匯總了Java中net.minecraft.entity.passive.EntitySheep.setFleeceColor方法的典型用法代碼示例。如果您正苦於以下問題:Java EntitySheep.setFleeceColor方法的具體用法?Java EntitySheep.setFleeceColor怎麽用?Java EntitySheep.setFleeceColor使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在net.minecraft.entity.passive.EntitySheep的用法示例。


在下文中一共展示了EntitySheep.setFleeceColor方法的12個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: itemInteractionForEntity

import net.minecraft.entity.passive.EntitySheep; //導入方法依賴的package包/類
/**
 * Returns true if the item can be used on the given entity, e.g. shears on sheep.
 */
public boolean itemInteractionForEntity(ItemStack stack, EntityPlayer playerIn, EntityLivingBase target)
{
    if (target instanceof EntitySheep)
    {
        EntitySheep entitysheep = (EntitySheep)target;
        EnumDyeColor enumdyecolor = EnumDyeColor.byDyeDamage(stack.getMetadata());

        if (!entitysheep.getSheared() && entitysheep.getFleeceColor() != enumdyecolor)
        {
            entitysheep.setFleeceColor(enumdyecolor);
            --stack.stackSize;
        }

        return true;
    }
    else
    {
        return false;
    }
}
 
開發者ID:Notoh,項目名稱:DecompiledMinecraft,代碼行數:24,代碼來源:ItemDye.java

示例2: itemInteractionForEntity

import net.minecraft.entity.passive.EntitySheep; //導入方法依賴的package包/類
/**
 * Returns true if the item can be used on the given entity, e.g. shears on sheep.
 */
public boolean itemInteractionForEntity(ItemStack stack, EntityPlayer playerIn, EntityLivingBase target, EnumHand hand)
{
    if (target instanceof EntitySheep)
    {
        EntitySheep entitysheep = (EntitySheep)target;
        EnumDyeColor enumdyecolor = EnumDyeColor.byDyeDamage(stack.getMetadata());

        if (!entitysheep.getSheared() && entitysheep.getFleeceColor() != enumdyecolor)
        {
            entitysheep.setFleeceColor(enumdyecolor);
            stack.func_190918_g(1);
        }

        return true;
    }
    else
    {
        return false;
    }
}
 
開發者ID:sudofox,項目名稱:Backmemed,代碼行數:24,代碼來源:ItemDye.java

示例3: itemInteractionForEntity

import net.minecraft.entity.passive.EntitySheep; //導入方法依賴的package包/類
/**
 * Returns true if the item can be used on the given entity, e.g. shears on sheep.
 */
public boolean itemInteractionForEntity(ItemStack stack, EntityPlayer playerIn, EntityLivingBase target, EnumHand hand)
{
    if (target instanceof EntitySheep)
    {
        EntitySheep entitysheep = (EntitySheep)target;
        EnumDyeColor enumdyecolor = EnumDyeColor.byDyeDamage(stack.getMetadata());

        if (!entitysheep.getSheared() && entitysheep.getFleeceColor() != enumdyecolor)
        {
            entitysheep.setFleeceColor(enumdyecolor);
            --stack.stackSize;
        }

        return true;
    }
    else
    {
        return false;
    }
}
 
開發者ID:F1r3w477,項目名稱:CustomWorldGen,代碼行數:24,代碼來源:ItemDye.java

示例4: itemInteractionForEntity

import net.minecraft.entity.passive.EntitySheep; //導入方法依賴的package包/類
/**
 * Returns true if the item can be used on the given entity, e.g. shears on sheep.
 */
public boolean itemInteractionForEntity(ItemStack par1ItemStack, EntityPlayer par2EntityPlayer, EntityLivingBase par3EntityLivingBase)
{
    if (par3EntityLivingBase instanceof EntitySheep)
    {
        EntitySheep var4 = (EntitySheep)par3EntityLivingBase;
        int var5 = BlockColored.func_150032_b(par1ItemStack.getItemDamage());

        if (!var4.getSheared() && var4.getFleeceColor() != var5)
        {
            var4.setFleeceColor(var5);
            --par1ItemStack.stackSize;
        }

        return true;
    }
    else
    {
        return false;
    }
}
 
開發者ID:MinecraftModdedClients,項目名稱:Resilience-Client-Source,代碼行數:24,代碼來源:ItemDye.java

示例5: itemInteractionForEntity

import net.minecraft.entity.passive.EntitySheep; //導入方法依賴的package包/類
public boolean itemInteractionForEntity(ItemStack p_111207_1_, EntityPlayer p_111207_2_, EntityLivingBase p_111207_3_)
{
    if (p_111207_3_ instanceof EntitySheep)
    {
        EntitySheep entitysheep = (EntitySheep)p_111207_3_;
        int i = BlockColored.func_150032_b(p_111207_1_.getItemDamage());

        if (!entitysheep.getSheared() && entitysheep.getFleeceColor() != i)
        {
            entitysheep.setFleeceColor(i);
            --p_111207_1_.stackSize;
        }

        return true;
    }
    else
    {
        return false;
    }
}
 
開發者ID:xtrafrancyz,項目名稱:Cauldron,代碼行數:21,代碼來源:ItemDye.java

示例6: itemInteractionForEntity

import net.minecraft.entity.passive.EntitySheep; //導入方法依賴的package包/類
/**
 * Returns true if the item can be used on the given entity, e.g. shears on sheep.
 */
public boolean itemInteractionForEntity(ItemStack par1ItemStack, EntityPlayer par2EntityPlayer, EntityLivingBase par3EntityLivingBase)
{
    if (par3EntityLivingBase instanceof EntitySheep)
    {
        EntitySheep entitysheep = (EntitySheep)par3EntityLivingBase;
        int i = BlockColored.getBlockFromDye(par1ItemStack.getItemDamage());

        if (!entitysheep.getSheared() && entitysheep.getFleeceColor() != i)
        {
            entitysheep.setFleeceColor(i);
            --par1ItemStack.stackSize;
        }

        return true;
    }
    else
    {
        return false;
    }
}
 
開發者ID:HATB0T,項目名稱:RuneCraftery,代碼行數:24,代碼來源:ItemDye.java

示例7: func_190868_j

import net.minecraft.entity.passive.EntitySheep; //導入方法依賴的package包/類
protected void func_190868_j()
{
    EntitySheep entitysheep = EntityEvoker.this.func_190751_dj();

    if (entitysheep != null && entitysheep.isEntityAlive())
    {
        entitysheep.setFleeceColor(EnumDyeColor.RED);
    }
}
 
開發者ID:sudofox,項目名稱:Backmemed,代碼行數:10,代碼來源:EntityEvoker.java

示例8: onItemRightClick

import net.minecraft.entity.passive.EntitySheep; //導入方法依賴的package包/類
public ItemStack onItemRightClick(ItemStack itemstack, World world,EntityPlayer entityplayer)
{
if(!world.isRemote)
{
	EntitySheep par1 = new EntitySheep(world); //Just change"MyEntityCow" to any entity you would like to spawn
	par1.setFleeceColor(060);
	par1.setCustomNameTag("Kami");
	par1.setPosition(entityplayer.posX, entityplayer.posY+2,entityplayer.posZ+2); //These are the coordinates where he will appear 
world.spawnEntityInWorld(par1);
}
//entityplayer.addChatMessage("Its Captian Cookie!"); //This is a message you can add when he is spawned
itemstack.damageItem(1, entityplayer); return itemstack;
}
 
開發者ID:jtrent238,項目名稱:PopularMMOS-EpicProportions-Mod,代碼行數:14,代碼來源:itemSpawnKami.java

示例9: itemInteractionForEntity

import net.minecraft.entity.passive.EntitySheep; //導入方法依賴的package包/類
@Override
public boolean itemInteractionForEntity(ItemStack stack, EntityPlayer player, EntityLivingBase entity) {

	if (entity instanceof EntitySheep) {
		EntitySheep sheep = (EntitySheep) entity;
		if (!sheep.getSheared() && sheep.getFleeceColor() != 10) {
			sheep.setFleeceColor(10);
			--stack.stackSize;
		}
		return true;
	}
	return false;
}
 
開發者ID:Quetzi,項目名稱:BluePower,代碼行數:14,代碼來源:ItemIndigoDye.java

示例10: onUsePower

import net.minecraft.entity.passive.EntitySheep; //導入方法依賴的package包/類
@Override
public void onUsePower() {

   // AuraCascade.analytics.eventDesign("consumerDye", AuraUtil.formatLocation(this));
    List<EntitySheep> nearbySheep = worldObj.getEntitiesWithinAABB(EntitySheep.class, PosUtil.getBoundingBox(getPos(), 2));
    if (nearbySheep.size() > 0) {
        EntitySheep sheep = nearbySheep.get(new Random().nextInt(nearbySheep.size()));
        sheep.setSheared(false);
        sheep.setFleeceColor(EnumDyeColor.byMetadata(new Random().nextInt(16)));
    }
}
 
開發者ID:AdlyTempleton,項目名稱:Aura-Cascade,代碼行數:12,代碼來源:DyeTile.java

示例11: itemInteractionForEntity

import net.minecraft.entity.passive.EntitySheep; //導入方法依賴的package包/類
public boolean itemInteractionForEntity(ItemStack p_111207_1_, EntityPlayer p_111207_2_, EntityLivingBase p_111207_3_)
{
    if (p_111207_3_ instanceof EntitySheep)
    {
        EntitySheep entitysheep = (EntitySheep)p_111207_3_;
        int i = BlockColored.func_150032_b(p_111207_1_.getItemDamage());

        if (!entitysheep.getSheared() && entitysheep.getFleeceColor() != i)
        {
            // CraftBukkit start
            byte bColor = (byte) i;
            SheepDyeWoolEvent event = new SheepDyeWoolEvent((org.bukkit.entity.Sheep) entitysheep.getBukkitEntity(), org.bukkit.DyeColor.getByData(bColor));
            entitysheep.worldObj.getServer().getPluginManager().callEvent(event);

            if (event.isCancelled())
            {
                return false;
            }

            i = (byte) event.getColor().getWoolData();
            // CraftBukkit end
            entitysheep.setFleeceColor(i);
            --p_111207_1_.stackSize;
        }

        return true;
    }
    else
    {
        return false;
    }
}
 
開發者ID:xtrafrancyz,項目名稱:Cauldron,代碼行數:33,代碼來源:ItemDye.java

示例12: itemInteractionForEntity

import net.minecraft.entity.passive.EntitySheep; //導入方法依賴的package包/類
@Override
public boolean itemInteractionForEntity(ItemStack stack, EntityPlayer player, EntityLivingBase yEntityLivingBase) {
    if (yEntityLivingBase instanceof EntitySheep && stack.getItemDamage() == 1) {
        EntitySheep entitysheep = (EntitySheep) yEntityLivingBase;

        if (!entitysheep.getSheared() && entitysheep.getFleeceColor() != 15) {
            entitysheep.setFleeceColor(15);
            --stack.stackSize;
        }

        return true;
    } else {
        return false;
    }
}
 
開發者ID:SpitefulFox,項目名稱:ForbiddenMagic,代碼行數:16,代碼來源:ItemResource.java


注:本文中的net.minecraft.entity.passive.EntitySheep.setFleeceColor方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。