2023-01-27 19:06:06 +01:00
|
|
|
package com.minelittlepony.unicopia;
|
|
|
|
|
|
|
|
import net.minecraft.world.GameRules;
|
|
|
|
import net.minecraft.world.GameRules.BooleanRule;
|
2023-04-30 01:51:15 +02:00
|
|
|
import net.minecraft.world.GameRules.IntRule;
|
2023-01-27 19:06:06 +01:00
|
|
|
|
|
|
|
public interface UGameRules {
|
|
|
|
GameRules.Key<BooleanRule> SWAP_TRIBE_ON_DEATH = GameRules.register("swapTribeOnDeath", GameRules.Category.SPAWNING, BooleanRule.create(false));
|
2023-01-28 00:48:44 +01:00
|
|
|
GameRules.Key<BooleanRule> ANNOUNCE_TRIBE_JOINS = GameRules.register("announceTribeJoins", GameRules.Category.SPAWNING, BooleanRule.create(false));
|
2023-04-30 01:51:15 +02:00
|
|
|
GameRules.Key<IntRule> WEATHER_EFFECTS_STRENGTH = GameRules.register("weatherEffectsStrength", GameRules.Category.MISC, IntRule.create(100));
|
2023-01-27 19:06:06 +01:00
|
|
|
|
|
|
|
static void bootstrap() { }
|
|
|
|
}
|