Fix a lot
This commit is contained in:
parent
45278c7dd1
commit
c2402df15d
@ -96,7 +96,9 @@ public class Commands implements CommandExecutor, TabCompleter {
|
|||||||
builder.append(" [Back]");
|
builder.append(" [Back]");
|
||||||
builder.color(net.md_5.bungee.api.ChatColor.GOLD);
|
builder.color(net.md_5.bungee.api.ChatColor.GOLD);
|
||||||
builder.event(new ClickEvent(ClickEvent.Action.RUN_COMMAND, "/rt list 1 d"));
|
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");
|
builder.append("\n\n" + ChatColor.GREEN + "" + ChatColor.BOLD + "Ingredients:\n");
|
||||||
for (Map.Entry<Material, Integer> entry : ritual.ingredients.entrySet()) {
|
for (Map.Entry<Material, Integer> entry : ritual.ingredients.entrySet()) {
|
||||||
builder.append(WordUtils.capitalizeFully(entry.getKey().toString().replace('_', ' ').toLowerCase()));
|
builder.append(WordUtils.capitalizeFully(entry.getKey().toString().replace('_', ' ').toLowerCase()));
|
||||||
|
@ -13,7 +13,7 @@ public class BlockShiftRitual extends Ritual {
|
|||||||
//possible mats
|
//possible mats
|
||||||
private static final Material[] pMat = {
|
private static final Material[] pMat = {
|
||||||
Material.STONE, Material.GRASS, Material.DIRT, Material.COBBLESTONE, Material.WOOD,
|
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.IRON_ORE, Material.COAL_ORE, Material.LOG, Material.LEAVES, Material.SPONGE,
|
||||||
Material.GLASS, Material.LAPIS_ORE, Material.LAPIS_BLOCK, Material.SANDSTONE,
|
Material.GLASS, Material.LAPIS_ORE, Material.LAPIS_BLOCK, Material.SANDSTONE,
|
||||||
Material.WEB, Material.WOOL, Material.GOLD_BLOCK, Material.IRON_BLOCK, Material.BRICK,
|
Material.WEB, Material.WOOL, Material.GOLD_BLOCK, Material.IRON_BLOCK, Material.BRICK,
|
||||||
|
@ -16,12 +16,13 @@ public class HardPenorRitual extends Ritual {
|
|||||||
addIngredient(Material.REDSTONE, 16);
|
addIngredient(Material.REDSTONE, 16);
|
||||||
addIngredient(Material.WHEAT, 32);
|
addIngredient(Material.WHEAT, 32);
|
||||||
name = "erection";
|
name = "erection";
|
||||||
|
backfire = 0.1;
|
||||||
description = "Erect a hard penor around yourself.";
|
description = "Erect a hard penor around yourself.";
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void execute(Player caster, Player target, Location location) {
|
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 ball1 = shaft.getRelative(2, 0, -1);
|
||||||
Block ball2 = shaft.getRelative(-2, 0, -1);
|
Block ball2 = shaft.getRelative(-2, 0, -1);
|
||||||
for(int d = 0; d < 8; d ++) {
|
for(int d = 0; d < 8; d ++) {
|
||||||
|
@ -11,7 +11,7 @@ public class KickingRitual extends Ritual {
|
|||||||
@Override
|
@Override
|
||||||
public void setup() {
|
public void setup() {
|
||||||
addIngredient(Material.WHEAT, 64*2);
|
addIngredient(Material.WHEAT, 64*2);
|
||||||
addIngredient(Material.FLOWER_POT, 1);
|
addIngredient(Material.FLOWER_POT_ITEM, 1);
|
||||||
addIngredient(Material.LOG, 1);
|
addIngredient(Material.LOG, 1);
|
||||||
addIngredient(Material.IRON_BOOTS, 1);
|
addIngredient(Material.IRON_BOOTS, 1);
|
||||||
health = 3;
|
health = 3;
|
||||||
|
@ -25,6 +25,7 @@ public class RotateRitual extends Ritual {
|
|||||||
public void execute(Player caster, Player target, Location location) {
|
public void execute(Player caster, Player target, Location location) {
|
||||||
Location targetLocation = target.getLocation();
|
Location targetLocation = target.getLocation();
|
||||||
targetLocation.setDirection(targetLocation.getDirection().multiply(-1));
|
targetLocation.setDirection(targetLocation.getDirection().multiply(-1));
|
||||||
|
target.teleport(targetLocation);
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -14,7 +14,7 @@ public class WitherRitual extends Ritual {
|
|||||||
addIngredient(Material.BONE, 64);
|
addIngredient(Material.BONE, 64);
|
||||||
addIngredient(Material.WHEAT, 64*9);
|
addIngredient(Material.WHEAT, 64*9);
|
||||||
addSacrifice(EntityType.SKELETON, 1);
|
addSacrifice(EntityType.SKELETON, 1);
|
||||||
addIngredient(Material.FLOWER_POT, 1);
|
addIngredient(Material.FLOWER_POT_ITEM, 1);
|
||||||
addIngredient(Material.SAND, 1);
|
addIngredient(Material.SAND, 1);
|
||||||
name = "wither summoning";
|
name = "wither summoning";
|
||||||
health = 2;
|
health = 2;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user