本文整理汇总了Java中cn.nukkit.item.Item.BLAZE_POWDER属性的典型用法代码示例。如果您正苦于以下问题:Java Item.BLAZE_POWDER属性的具体用法?Java Item.BLAZE_POWDER怎么用?Java Item.BLAZE_POWDER使用的例子?那么, 这里精选的属性代码示例或许可以为您提供帮助。您也可以进一步了解该属性所在类cn.nukkit.item.Item
的用法示例。
在下文中一共展示了Item.BLAZE_POWDER属性的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: onUpdate
@Override
public boolean onUpdate() {
if (closed) {
return false;
}
boolean ret = false;
Item ingredient = this.inventory.getIngredient();
boolean canBrew = false;
Item fuel = this.getInventory().getFuel();
if (this.fuelAmount <= 0 && fuel.getId() == Item.BLAZE_POWDER && fuel.getCount() > 0) {
fuel.count--;
this.fuelAmount = 20;
this.fuelTotal = 20;
this.inventory.setFuel(fuel);
this.sendFuel();
}
if (this.fuelAmount > 0) {
for (int i = 1; i <= 3; i++) {
if (this.inventory.getItem(i).getId() == Item.POTION) {
canBrew = true;
}
}
if (this.brewTime <= MAX_BREW_TIME && canBrew && ingredient.getCount() > 0) {
if (!this.checkIngredient(ingredient)) {
canBrew = false;
}
} else {
canBrew = false;
}
}
if (canBrew) {
if (this.brewTime == MAX_BREW_TIME) {
this.sendBrewTime();
}
this.brewTime--;
if (this.brewTime <= 0) { //20 seconds
for (int i = 1; i <= 3; i++) {
Item potion = this.inventory.getItem(i);
BrewingRecipe recipe = Server.getInstance().getCraftingManager().matchBrewingRecipe(ingredient, potion);
if (recipe != null) {
this.inventory.setItem(i, recipe.getResult());
}
}
ingredient.count--;
this.inventory.setIngredient(ingredient);
this.fuelAmount--;
this.sendFuel();
this.brewTime = MAX_BREW_TIME;
}
ret = true;
} else {
this.brewTime = MAX_BREW_TIME;
}
//this.sendBrewTime();
lastUpdate = System.currentTimeMillis();
return ret;
}