Added different types of Demon Will crystals. Obtainment method still TBD
This commit is contained in:
parent
8077962e08
commit
19fec96bfd
12 changed files with 277 additions and 21 deletions
|
@ -1,13 +1,18 @@
|
|||
package WayofTime.bloodmagic.api.soul;
|
||||
|
||||
import net.minecraft.util.IStringSerializable;
|
||||
import lombok.Getter;
|
||||
import lombok.RequiredArgsConstructor;
|
||||
|
||||
@Getter
|
||||
@RequiredArgsConstructor
|
||||
public enum EnumDemonWillType
|
||||
public enum EnumDemonWillType implements IStringSerializable
|
||||
{
|
||||
DEFAULT("Default");
|
||||
DEFAULT("Default"),
|
||||
CORROSIVE("Corrosive"),
|
||||
DESTRUCTIVE("Destructive"),
|
||||
VENGEFUL("Vengeful"),
|
||||
STEADFAST("Steadfast");
|
||||
|
||||
public final String name;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue