2021-03-06 13:27:52 +01:00
|
|
|
package com.minelittlepony.unicopia.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 com.minelittlepony.unicopia.entity.Equine;
|
2022-12-23 23:31:06 +01:00
|
|
|
import com.minelittlepony.unicopia.entity.player.Pony;
|
|
|
|
|
2021-03-06 13:27:52 +01:00
|
|
|
import net.minecraft.entity.Entity;
|
|
|
|
import net.minecraft.entity.LivingEntity;
|
|
|
|
import net.minecraft.entity.damage.DamageSource;
|
|
|
|
import net.minecraft.text.Text;
|
|
|
|
|
|
|
|
@Mixin(DamageSource.class)
|
|
|
|
abstract class MixinDamageSource {
|
|
|
|
@Inject(method = "getDeathMessage", at = @At("RETURN"), cancellable = true)
|
|
|
|
private void onGetDeathMessage(LivingEntity entity, CallbackInfoReturnable<Text> info) {
|
2021-03-06 22:11:17 +01:00
|
|
|
Equine.of(entity).map(Equine::getAttacker).ifPresent(attacker -> {
|
|
|
|
DamageSource self = (DamageSource)(Object)this;
|
2021-03-06 13:27:52 +01:00
|
|
|
|
|
|
|
Entity prime = entity.getPrimeAdversary();
|
2022-12-19 23:23:08 +01:00
|
|
|
if (prime != null && !attacker.isOwnedBy(prime)) {
|
|
|
|
info.setReturnValue(Text.translatable("death.attack.generic.and_also", info.getReturnValue(), attacker.asEntity().getDisplayName()));
|
2021-03-06 13:27:52 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2022-12-19 23:23:08 +01:00
|
|
|
info.setReturnValue(Text.translatable("death.attack." + self.getName() + ".player", entity.getDisplayName(), attacker.asEntity().getDisplayName()));
|
2021-03-06 22:11:17 +01:00
|
|
|
});
|
2022-12-23 23:31:06 +01:00
|
|
|
|
|
|
|
DamageSource self = (DamageSource)(Object)this;
|
|
|
|
|
|
|
|
Pony.of(entity).filter(e -> e.getSpecies().canFly()).ifPresent(pony -> {
|
|
|
|
if (pony.getPhysics().isFlying()) {
|
|
|
|
info.setReturnValue(Text.translatable("death.attack.generic.whilst_flying", info.getReturnValue()));
|
|
|
|
}
|
|
|
|
});
|
2021-03-06 13:27:52 +01:00
|
|
|
}
|
|
|
|
}
|