Hats, supposed to go in the previous one
This commit is contained in:
parent
7d8ffa1311
commit
85b8937801
@ -0,0 +1,21 @@
|
||||
package mineplex.core.gadget.gadgets.hat;
|
||||
|
||||
import mineplex.core.common.skin.SkinData;
|
||||
import mineplex.core.common.util.C;
|
||||
import mineplex.core.common.util.LineFormat;
|
||||
import mineplex.core.common.util.UtilText;
|
||||
import mineplex.core.gadget.GadgetManager;
|
||||
import mineplex.core.gadget.types.HatGadget;
|
||||
|
||||
public class HatCompanionBlock extends HatGadget
|
||||
{
|
||||
|
||||
public HatCompanionBlock(GadgetManager manager)
|
||||
{
|
||||
super(manager, "Companion Block",
|
||||
UtilText.splitLineToArray(C.cGray + "The Enrichment Center is required to remind you that the Weighted Companion Cube cannot talk. In the event that it does talk The Enrichment Centre asks you to ignore its advice.", LineFormat.LORE),
|
||||
1,
|
||||
SkinData.COMPANION_CUBE.getSkull(), "Companion Block");
|
||||
}
|
||||
|
||||
}
|
@ -0,0 +1,21 @@
|
||||
package mineplex.core.gadget.gadgets.hat;
|
||||
|
||||
import mineplex.core.common.skin.SkinData;
|
||||
import mineplex.core.common.util.C;
|
||||
import mineplex.core.common.util.LineFormat;
|
||||
import mineplex.core.common.util.UtilText;
|
||||
import mineplex.core.gadget.GadgetManager;
|
||||
import mineplex.core.gadget.types.HatGadget;
|
||||
|
||||
public class HatLovestruck extends HatGadget
|
||||
{
|
||||
|
||||
public HatLovestruck(GadgetManager manager)
|
||||
{
|
||||
super(manager, "Love Struck",
|
||||
UtilText.splitLineToArray(C.cGray + "Ever feel like all you see is love? Well, now you can show it to the rest of the world too!", LineFormat.LORE),
|
||||
1,
|
||||
SkinData.LOVESTRUCK.getSkull(), "Love Stuck");
|
||||
}
|
||||
|
||||
}
|
@ -0,0 +1,21 @@
|
||||
package mineplex.core.gadget.gadgets.hat;
|
||||
|
||||
import mineplex.core.common.skin.SkinData;
|
||||
import mineplex.core.common.util.C;
|
||||
import mineplex.core.common.util.LineFormat;
|
||||
import mineplex.core.common.util.UtilText;
|
||||
import mineplex.core.gadget.GadgetManager;
|
||||
import mineplex.core.gadget.types.HatGadget;
|
||||
|
||||
public class HatSecretPackage extends HatGadget
|
||||
{
|
||||
|
||||
public HatSecretPackage(GadgetManager manager)
|
||||
{
|
||||
super(manager, "Secret Package",
|
||||
UtilText.splitLineToArray(C.cGray + "O.o Wonder what that could be??? o.O", LineFormat.LORE),
|
||||
1,
|
||||
SkinData.SECRET_PACKAGE.getSkull(), "Secret Package");
|
||||
}
|
||||
|
||||
}
|
@ -0,0 +1,21 @@
|
||||
package mineplex.core.gadget.gadgets.hat;
|
||||
|
||||
import mineplex.core.common.skin.SkinData;
|
||||
import mineplex.core.common.util.C;
|
||||
import mineplex.core.common.util.LineFormat;
|
||||
import mineplex.core.common.util.UtilText;
|
||||
import mineplex.core.gadget.GadgetManager;
|
||||
import mineplex.core.gadget.types.HatGadget;
|
||||
|
||||
public class HatTeddybear extends HatGadget
|
||||
{
|
||||
|
||||
public HatTeddybear(GadgetManager manager)
|
||||
{
|
||||
super(manager, "Teddy Bear",
|
||||
UtilText.splitLineToArray(C.cGray + "Perfect for those trying to get more physical contact with people.", LineFormat.LORE),
|
||||
1,
|
||||
SkinData.TEDDY_BEAR.getSkull(), "Teddy Bear");
|
||||
}
|
||||
|
||||
}
|
Loading…
Reference in New Issue
Block a user