That's one heck of a commit you've got there...

I may have got a bit behind with version control. A lot behind, in fact. Maybe I'll go back and split this sometime - then again, I probably won't. But hey, at least it's here!
This commit is contained in:
Electroblob77
2019-08-18 00:04:18 +01:00
parent 2680d02304
commit f37812be3e
1564 changed files with 47652 additions and 12984 deletions
@@ -0,0 +1,49 @@
package electroblob.wizardry.potion;
import electroblob.wizardry.Wizardry;
import electroblob.wizardry.registry.WizardryPotions;
import net.minecraft.entity.SharedMonsterAttributes;
import net.minecraft.util.FoodStats;
import net.minecraft.util.ResourceLocation;
import net.minecraftforge.fml.common.Mod;
import net.minecraftforge.fml.common.ObfuscationReflectionHelper;
import net.minecraftforge.fml.common.eventhandler.SubscribeEvent;
import net.minecraftforge.fml.common.gameevent.TickEvent;
import java.lang.reflect.Field;
@Mod.EventBusSubscriber
public class CurseEnfeeblement extends Curse {
// Yay more reflection
private static final Field foodTimer;
static {
foodTimer = ObfuscationReflectionHelper.findField(FoodStats.class, "field_75123_d");
foodTimer.setAccessible(true);
}
public CurseEnfeeblement(boolean isBadEffect, int liquiidColour){
super(isBadEffect, liquiidColour, new ResourceLocation(Wizardry.MODID, "textures/gui/potion_icon_curse_of_enfeeblement.png"));
// This needs to be here because registerPotionAttributeModifier doesn't like it if the potion has no name yet.
this.setPotionName("potion." + Wizardry.MODID + ":curse_of_enfeeblement");
this.registerPotionAttributeModifier(SharedMonsterAttributes.MAX_HEALTH,
"2e8c378e-3d51-4ba1-b02c-591b5d968a05", -0.2, 1);
}
@SubscribeEvent
public static void onPlayerTickEvent(TickEvent.PlayerTickEvent event){
// Players are the only entities with natural regeneration
// This can't be done in performEffect as that method only gets called every 20 ticks or so
// Don't bother trying to prevent it unless the player is full enough
if(event.player.isPotionActive(WizardryPotions.curse_of_enfeeblement) && event.player.getFoodStats().getFoodLevel() > 17){
try{
// Constantly setting this to zero prevents natural regeneration
foodTimer.set(event.player.getFoodStats(), 0);
}catch(IllegalAccessException e){
Wizardry.logger.error("Error setting player food timer: ", e);
}
}
}
}