ActuallyAdditions/src/main/java/de/ellpeck/actuallyadditions/blocks/metalists/TheWildPlants.java

33 lines
1 KiB
Java
Raw Normal View History

2015-08-29 14:33:25 +02:00
/*
* This file ("TheWildPlants.java") is part of the Actually Additions Mod for Minecraft.
* It is created and owned by Ellpeck and distributed
* under the Actually Additions License to be found at
2016-01-03 16:05:51 +01:00
* http://ellpeck.de/actaddlicense/
2015-08-29 14:33:25 +02:00
* View the source code at https://github.com/Ellpeck/ActuallyAdditions
*
2016-01-03 16:05:51 +01:00
* © 2016 Ellpeck
2015-08-29 14:33:25 +02:00
*/
2015-12-30 22:02:15 +01:00
package de.ellpeck.actuallyadditions.blocks.metalists;
2015-06-28 03:12:32 +02:00
2015-12-30 22:02:15 +01:00
import de.ellpeck.actuallyadditions.blocks.InitBlocks;
2015-06-28 03:12:32 +02:00
import net.minecraft.block.Block;
import net.minecraft.item.EnumRarity;
public enum TheWildPlants{
2015-06-28 03:12:32 +02:00
CANOLA("Canola", EnumRarity.rare, InitBlocks.blockCanola),
FLAX("Flax", EnumRarity.rare, InitBlocks.blockFlax),
RICE("Rice", EnumRarity.rare, InitBlocks.blockRice),
COFFEE("Coffee", EnumRarity.rare, InitBlocks.blockCoffee);
2015-06-28 03:12:32 +02:00
public final String name;
public final EnumRarity rarity;
public final Block wildVersionOf;
TheWildPlants(String name, EnumRarity rarity, Block wildVersionOf){
2015-06-28 03:12:32 +02:00
this.name = name;
this.rarity = rarity;
this.wildVersionOf = wildVersionOf;
}
}