This repository has been archived on 2023-11-26. You can view files and clone it, but cannot push or open issues or pull requests.
Twine/src/main/java/com/thebrokenrail/twine/util/StageUtil.java
TheBrokenRail 5eb72dbab7
All checks were successful
Twine/pipeline/head This commit looks good
Re-balance Stages
2020-06-15 17:31:15 -04:00

11 lines
437 B
Java

package com.thebrokenrail.twine.util;
public class StageUtil {
public static final int NEUTRAL_MOBS_ARE_HOSTILE = 4;
public static final int CREEPERS_TARGET_ARTIFICIAL_BLOCKS = 3;
public static final int MOBS_GUARANTEED_ARMOR = 2;
public static final int HOSTILE_MOBS_TARGET_PASSIVE_MOBS = 1;
public static final int IRON_GOLEMS_TARGET_PLAYERS = 3;
public static final int MOBS_NO_LONGER_BURN_IN_SUNLIGHT = 5;
}