Fix a lot

This commit is contained in:
Edith Boles 2021-10-04 21:26:32 -07:00
parent 45278c7dd1
commit c2402df15d
6 changed files with 9 additions and 5 deletions

View File

@ -96,7 +96,9 @@ public class Commands implements CommandExecutor, TabCompleter {
builder.append(" [Back]");
builder.color(net.md_5.bungee.api.ChatColor.GOLD);
builder.event(new ClickEvent(ClickEvent.Action.RUN_COMMAND, "/rt list 1 d"));
builder.append("\n" +ChatColor.DARK_PURPLE + ChatColor.ITALIC + ritual.description);
builder.append("\n" + ritual.description);
builder.color(net.md_5.bungee.api.ChatColor.DARK_PURPLE);
builder.italic(true);
builder.append("\n\n" + ChatColor.GREEN + "" + ChatColor.BOLD + "Ingredients:\n");
for (Map.Entry<Material, Integer> entry : ritual.ingredients.entrySet()) {
builder.append(WordUtils.capitalizeFully(entry.getKey().toString().replace('_', ' ').toLowerCase()));

View File

@ -13,7 +13,7 @@ public class BlockShiftRitual extends Ritual {
//possible mats
private static final Material[] pMat = {
Material.STONE, Material.GRASS, Material.DIRT, Material.COBBLESTONE, Material.WOOD,
Material.WATER, Material.LAVA, Material.SAND, Material.GRAVEL, Material.GOLD_ORE,
Material.STATIONARY_WATER, Material.LAVA, Material.SAND, Material.GRAVEL, Material.GOLD_ORE,
Material.IRON_ORE, Material.COAL_ORE, Material.LOG, Material.LEAVES, Material.SPONGE,
Material.GLASS, Material.LAPIS_ORE, Material.LAPIS_BLOCK, Material.SANDSTONE,
Material.WEB, Material.WOOL, Material.GOLD_BLOCK, Material.IRON_BLOCK, Material.BRICK,

View File

@ -16,12 +16,13 @@ public class HardPenorRitual extends Ritual {
addIngredient(Material.REDSTONE, 16);
addIngredient(Material.WHEAT, 32);
name = "erection";
backfire = 0.1;
description = "Erect a hard penor around yourself.";
}
@Override
public void execute(Player caster, Player target, Location location) {
Block shaft = caster.getLocation().getBlock();
Block shaft = target.getLocation().getBlock();
Block ball1 = shaft.getRelative(2, 0, -1);
Block ball2 = shaft.getRelative(-2, 0, -1);
for(int d = 0; d < 8; d ++) {

View File

@ -11,7 +11,7 @@ public class KickingRitual extends Ritual {
@Override
public void setup() {
addIngredient(Material.WHEAT, 64*2);
addIngredient(Material.FLOWER_POT, 1);
addIngredient(Material.FLOWER_POT_ITEM, 1);
addIngredient(Material.LOG, 1);
addIngredient(Material.IRON_BOOTS, 1);
health = 3;

View File

@ -25,6 +25,7 @@ public class RotateRitual extends Ritual {
public void execute(Player caster, Player target, Location location) {
Location targetLocation = target.getLocation();
targetLocation.setDirection(targetLocation.getDirection().multiply(-1));
target.teleport(targetLocation);
}
}

View File

@ -14,7 +14,7 @@ public class WitherRitual extends Ritual {
addIngredient(Material.BONE, 64);
addIngredient(Material.WHEAT, 64*9);
addSacrifice(EntityType.SKELETON, 1);
addIngredient(Material.FLOWER_POT, 1);
addIngredient(Material.FLOWER_POT_ITEM, 1);
addIngredient(Material.SAND, 1);
name = "wither summoning";
health = 2;