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

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

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

import cn.nukkit.api.PowerNukkitXOnly;
import cn.nukkit.api.Since;

@PowerNukkitXOnly
@Since("1.6.0.0-PNX")
public class ItemAmethystShard extends Item {
    public ItemAmethystShard() {
        this(AMETHYST_SHARD);
    }

    public ItemAmethystShard(int id) {
        this(id, new Integer(0));
    }

    public ItemAmethystShard(Integer meta) {
        this(AMETHYST_SHARD, meta);
    }

    public ItemAmethystShard(Integer meta, int count) {
        this(AMETHYST_SHARD, meta, count);
    }

    public ItemAmethystShard(int id, Integer meta) {
        this(id, meta, 1);
    }

    public ItemAmethystShard(int id, Integer meta, int count) {
        this(id, meta, count, "Amethyst Shard");
    }

    public ItemAmethystShard(int id, Integer meta, int count, String name) {
        super(id, meta, count, name);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy