All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cn.nukkit.item.ItemPotato Maven / Gradle / Ivy

There is a newer version: 1.20.40-r1
Show newest version
package cn.nukkit.item;

import cn.nukkit.block.Block;
import cn.nukkit.block.BlockID;

/**
 * @author MagicDroidX (Nukkit Project)
 */
public class ItemPotato extends ItemEdible {

    public ItemPotato() {
        this(0, 1);
    }

    public ItemPotato(Integer meta) {
        this(meta, 1);
    }

    public ItemPotato(Integer meta, int count) {
        super(POTATO, meta, count, "Potato");
        this.block = Block.get(BlockID.POTATO_BLOCK);
    }

    protected ItemPotato(int id, Integer meta, int count, String name) {
        super(id, meta, count, name);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy