ActuallyAdditions/src/main/java/de/ellpeck/actuallyadditions/mod/items/metalists/TheMiscItems.java

53 lines
2 KiB
Java
Raw Normal View History

2015-08-29 14:33:25 +02:00
/*
2016-05-16 22:52:27 +02:00
* This file ("TheMiscItems.java") is part of the Actually Additions mod for Minecraft.
2015-08-29 14:33:25 +02:00
* It is created and owned by Ellpeck and distributed
* under the Actually Additions License to be found at
2016-05-16 22:52:27 +02:00
* http://ellpeck.de/actaddlicense
2015-08-29 14:33:25 +02:00
* View the source code at https://github.com/Ellpeck/ActuallyAdditions
*
2017-01-01 16:23:26 +01:00
* © 2015-2017 Ellpeck
2015-08-29 14:33:25 +02:00
*/
2016-01-05 04:47:35 +01:00
package de.ellpeck.actuallyadditions.mod.items.metalists;
2015-01-30 20:16:32 +01:00
2016-06-12 13:39:26 +02:00
import de.ellpeck.actuallyadditions.mod.util.Util;
import net.minecraft.item.EnumRarity;
2019-05-02 09:08:15 +02:00
import net.minecraftforge.common.IRarity;
2015-01-30 20:16:32 +01:00
2019-05-02 09:08:15 +02:00
public enum TheMiscItems {
2015-01-30 20:16:32 +01:00
2016-11-19 23:12:22 +01:00
PAPER_CONE("paper_cone", EnumRarity.COMMON),
MASHED_FOOD("mashed_food", EnumRarity.UNCOMMON),
KNIFE_BLADE("knife_blade", EnumRarity.COMMON),
KNIFE_HANDLE("knife_handle", EnumRarity.COMMON),
DOUGH("dough", EnumRarity.COMMON),
QUARTZ("black_quartz", EnumRarity.EPIC),
RING("ring", EnumRarity.UNCOMMON),
COIL("coil", EnumRarity.COMMON),
COIL_ADVANCED("coil_advanced", EnumRarity.UNCOMMON),
RICE_DOUGH("rice_dough", EnumRarity.UNCOMMON),
TINY_COAL("tiny_coal", EnumRarity.COMMON),
TINY_CHAR("tiny_charcoal", EnumRarity.COMMON),
RICE_SLIME("rice_slime", EnumRarity.UNCOMMON),
CANOLA("canola", EnumRarity.UNCOMMON),
CUP("cup", EnumRarity.UNCOMMON),
BAT_WING("bat_wing", EnumRarity.RARE),
DRILL_CORE("drill_core", EnumRarity.UNCOMMON),
BLACK_DYE("black_dye", EnumRarity.EPIC),
LENS("lens", EnumRarity.UNCOMMON),
ENDER_STAR("ender_star", EnumRarity.EPIC),
SPAWNER_SHARD("spawner_shard", EnumRarity.EPIC),
BIOMASS("biomass", EnumRarity.UNCOMMON),
BIOCOAL("biocoal", EnumRarity.RARE),
CRYSTALLIZED_CANOLA_SEED("crystallized_canola_seed", EnumRarity.UNCOMMON),
EMPOWERED_CANOLA_SEED("empowered_canola_seed", EnumRarity.RARE),
YOUTUBE_ICON("youtube_icon", Util.FALLBACK_RARITY);
2015-01-30 20:16:32 +01:00
public final String name;
2019-05-02 09:08:15 +02:00
public final IRarity rarity;
2015-01-30 20:16:32 +01:00
2019-05-02 09:08:15 +02:00
TheMiscItems(String name, IRarity rarity) {
2015-01-30 20:16:32 +01:00
this.name = name;
this.rarity = rarity;
2015-01-30 20:16:32 +01:00
}
}