49 lines
1.9 KiB
Java
49 lines
1.9 KiB
Java
package ovh.sad.animalrp.mixin;
|
|
|
|
import org.spongepowered.asm.mixin.Mixin;
|
|
import org.spongepowered.asm.mixin.injection.At;
|
|
import org.spongepowered.asm.mixin.injection.Inject;
|
|
import org.spongepowered.asm.mixin.injection.callback.CallbackInfoReturnable;
|
|
|
|
import net.minecraft.component.type.FoodComponent;
|
|
import net.minecraft.entity.EntityType;
|
|
import net.minecraft.entity.LivingEntity;
|
|
import net.minecraft.entity.effect.StatusEffectInstance;
|
|
import net.minecraft.entity.effect.StatusEffects;
|
|
import net.minecraft.item.ItemStack;
|
|
import net.minecraft.server.network.ServerPlayerEntity;
|
|
import net.minecraft.world.World;
|
|
import ovh.sad.animalrp.AnimalRP;
|
|
import ovh.sad.animalrp.animals.Animal;
|
|
import ovh.sad.animalrp.animals.Bee;
|
|
|
|
@Mixin(value = LivingEntity.class)
|
|
public class FoodEating {
|
|
@Inject(method = "eatFood", at = @At("HEAD"))
|
|
public void eatFood(World world, ItemStack stack, FoodComponent foodComponent, CallbackInfoReturnable<?> cfr) {
|
|
LivingEntity entity = (LivingEntity) (Object) this;
|
|
if (entity.getType().equals(EntityType.PLAYER)) {
|
|
ServerPlayerEntity player = (ServerPlayerEntity) entity;
|
|
|
|
Animal animal = AnimalRP.users.get(player.getUuid());
|
|
|
|
if (animal != null) {
|
|
if (animal.name == "bee") {
|
|
((Bee) animal).onEat(player, stack);
|
|
}
|
|
if (animal.superfoods.contains(stack.getItem())) {
|
|
player.getHungerManager().add(4, 9.4f);
|
|
|
|
StatusEffectInstance effect = player.getStatusEffect(StatusEffects.SPEED);
|
|
int duration = 20 * 4;
|
|
|
|
if (effect != null) {
|
|
duration += effect.getDuration();
|
|
}
|
|
player.addStatusEffect(
|
|
new StatusEffectInstance(StatusEffects.SPEED, duration, 1, true, true, true));
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|