the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
1#pragma once
2
3class LivingEntity;
4
5#include "MobEffect.h"
6
7class AbsoptionMobEffect : public MobEffect
8{
9public:
10 AbsoptionMobEffect(int id, bool isHarmful, eMinecraftColour color);
11
12 void removeAttributeModifiers(shared_ptr<LivingEntity> entity, BaseAttributeMap *attributes, int amplifier);
13 void addAttributeModifiers(shared_ptr<LivingEntity> entity, BaseAttributeMap *attributes, int amplifier);
14};