Changes to commands

This commit is contained in:
Edith Boles 2021-10-04 18:14:56 -07:00
parent 3ad48605b3
commit 1a4fcaabfb
34 changed files with 38 additions and 1 deletions

View File

@ -35,7 +35,7 @@ public class Commands implements CommandExecutor, TabCompleter {
@Override @Override
public boolean onCommand(CommandSender sender, Command command, String label, String[] args) { public boolean onCommand(CommandSender sender, Command command, String label, String[] args) {
String key = String.join(" ", Arrays.asList(args).stream().map(string -> string.replace("_", " ")).collect(Collectors.toSet())).toLowerCase(); String key = String.join(" ", Arrays.asList(args).stream().map(string -> string.replace("_", " ")).collect(Collectors.toList())).toLowerCase();
if (args.length < 1 || args[0].toLowerCase().equals("list")) { if (args.length < 1 || args[0].toLowerCase().equals("list")) {
List<String> ritualNames = new ArrayList<String>(recipes.keySet()); List<String> ritualNames = new ArrayList<String>(recipes.keySet());
Collections.sort(ritualNames); Collections.sort(ritualNames);
@ -96,6 +96,7 @@ 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\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()));

View File

@ -32,6 +32,9 @@ public abstract class Ritual {
// name of ritual, should be a gerund // name of ritual, should be a gerund
public String name = "unnamed"; public String name = "unnamed";
// short description of ritual
public String description = "";
// whether you want a lightning effect // whether you want a lightning effect
public Boolean lightning = false; public Boolean lightning = false;

View File

@ -20,6 +20,7 @@ public class AnvilRitual extends Ritual {
health = 5; health = 5;
backfire = 0.5; backfire = 0.5;
notify = false; notify = false;
description = "Drop an anvil over your foe.";
} }
@Override @Override

View File

@ -16,6 +16,7 @@ public class BatSpewRitual extends Ritual {
addSacrifice(EntityType.CHICKEN, 1); addSacrifice(EntityType.CHICKEN, 1);
name = "bat spew"; name = "bat spew";
backfire = 0.1; backfire = 0.1;
description = "Summon a cauldron of bats to strike fear into your enemy.";
} }
@Override @Override

View File

@ -37,6 +37,7 @@ public class BlockShiftRitual extends Ritual {
addIngredient(Material.ENDER_PEARL, 1); addIngredient(Material.ENDER_PEARL, 1);
name = "block shift"; name = "block shift";
health = 3; health = 3;
description = "Shift reality around you.";
} }
@Override @Override

View File

@ -17,6 +17,7 @@ public class ChickenSpewRitual extends Ritual {
health = 3; health = 3;
name = "chicken spew"; name = "chicken spew";
backfire = 0.1; backfire = 0.1;
description = "Summon a flock of chickens to floof your enemy's mental state.";
} }
@Override @Override

View File

@ -22,6 +22,7 @@ public class ChugJugRitual extends Ritual {
addSacrifice(EntityType.WITCH, 1); addSacrifice(EntityType.WITCH, 1);
health = 10; health = 10;
name = "chug jug"; name = "chug jug";
description = "Summon a chug-jug'ed witch to poison your enemy!";
} }
@Override @Override

View File

@ -17,6 +17,7 @@ public class CreeperHissRitual extends Ritual {
name = "creeper hissing"; name = "creeper hissing";
health = 1; health = 1;
notify = false; notify = false;
description = "Play a creeper hiss to your enemy.";
} }
@Override @Override

View File

@ -18,6 +18,7 @@ public class CrystalizationRtiual extends Ritual {
name = "crystalization"; name = "crystalization";
health = 2; health = 2;
notify = false; notify = false;
description = "Combine ingredients into a ender crystal.";
} }
@Override @Override

View File

@ -22,6 +22,7 @@ public class DragonRitual extends Ritual {
name = "dragon summoning"; name = "dragon summoning";
health = 3; health = 3;
lightning = true; lightning = true;
description = "Summon the fearsome Ender Dragon.";
} }
@Override @Override

View File

@ -23,6 +23,7 @@ public class FakePlayerRitual extends Ritual {
name = "player illusion"; name = "player illusion";
notify = false; notify = false;
health = 4; health = 4;
description = "Summon a ghost nametag to spook your foe.";
} }
@Override @Override

View File

@ -14,6 +14,7 @@ public class FeedingRitual extends Ritual {
addIngredient(Material.WHEAT, 16); addIngredient(Material.WHEAT, 16);
health = 1; health = 1;
name = "feeding"; name = "feeding";
description = "Restore you and your target's food levels to maximum.";
} }
@Override @Override

View File

@ -19,6 +19,7 @@ public class FillerRitual extends Ritual {
name = "trolling"; name = "trolling";
health = 2; health = 2;
backfire = 0.2; backfire = 0.2;
description = "Fill your foe's inventory with junk!";
} }
@Override @Override

View File

@ -17,6 +17,7 @@ public class GBJRitual extends Ritual {
name = "caging"; name = "caging";
health = 5; health = 5;
backfire = 0.2; backfire = 0.2;
description = "Trap your foe in the wagie cage!";
} }
@Override @Override

View File

@ -18,6 +18,7 @@ public class GetLuckyRitual extends Ritual {
lightning = true; lightning = true;
name = "daring"; name = "daring";
notify = false; notify = false;
description = "Flip a coin and either nuke your base or get mountains of gold.";
} }
@Override @Override

View File

@ -16,6 +16,7 @@ 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";
description = "Encase your foe in a hard penor.";
} }
@Override @Override

View File

@ -14,6 +14,7 @@ public class HealRitual extends Ritual {
addIngredient(Material.WHEAT, 16); addIngredient(Material.WHEAT, 16);
addIngredient(Material.GOLD_NUGGET, 1); addIngredient(Material.GOLD_NUGGET, 1);
name = "healing"; name = "healing";
description = "Heal both you and your target for two hearts.";
} }
@Override @Override

View File

@ -29,6 +29,7 @@ public class HerobrineRitual extends Ritual {
health = 10; health = 10;
name = "herobrine"; name = "herobrine";
backfire = 0.1; backfire = 0.1;
description = "Summon Herobrine to vanquish your foe!";
} }
@Override @Override
public void execute(Player caster, Player target, Location location) { public void execute(Player caster, Player target, Location location) {

View File

@ -16,6 +16,7 @@ public class HitRitual extends Ritual {
name = "shadow hit"; name = "shadow hit";
health = 1; health = 1;
notify = false; notify = false;
description = "Play a fake hit noise to someone.";
} }
@Override @Override

View File

@ -17,6 +17,7 @@ public class KickingRitual extends Ritual {
health = 3; health = 3;
name = "kicking"; name = "kicking";
backfire = 0.4; backfire = 0.4;
description = "Kick your enemy from the server!";
} }
@Override @Override

View File

@ -14,6 +14,7 @@ public class LavaRitual extends Ritual {
addIngredient(Material.WHEAT, 64); addIngredient(Material.WHEAT, 64);
backfire = 0.10; backfire = 0.10;
name = "combustion"; name = "combustion";
description = "Light your enemy on fire for a short period.";
} }
@Override @Override

View File

@ -19,6 +19,7 @@ public class LightQuicktimeRitual extends Ritual {
name = "quicktime lite"; name = "quicktime lite";
health = 4; health = 4;
backfire = 0.3; backfire = 0.3;
description = "Force your enemy to undergo a quicktime event.";
} }
@Override @Override

View File

@ -16,6 +16,8 @@ public class LightningRitual extends Ritual {
addIngredient(Material.WHEAT, 64); addIngredient(Material.WHEAT, 64);
addIngredient(Material.GLOWSTONE, 16); addIngredient(Material.GLOWSTONE, 16);
name = "lightning location"; name = "lightning location";
description = "Send a bolt of locating lightning to all players.";
notify = false;
} }
@Override @Override

View File

@ -20,6 +20,7 @@ public class MidasRitual extends Ritual {
addIngredient(Material.WHEAT, 64*3); addIngredient(Material.WHEAT, 64*3);
name = "midas"; name = "midas";
health = 5; health = 5;
description = "Turn the block your enemy is looking at to gold.";
} }
@Override @Override

View File

@ -21,6 +21,7 @@ public class QuicktimeRitual extends Ritual {
name = "quicktime"; name = "quicktime";
health = 4; health = 4;
backfire = 0.15; backfire = 0.15;
description = "Force your enemy to undergo a quicktime event.";
} }
@Override @Override

View File

@ -29,6 +29,7 @@ public class RSpawnEggRitual extends Ritual {
addIngredient(Material.WHEAT, 64); addIngredient(Material.WHEAT, 64);
name = "egging"; name = "egging";
health = 2; health = 2;
description = "Summon a random spawn egg.";
} }
@Override @Override

View File

@ -23,6 +23,7 @@ public class RandomItemRitual extends Ritual {
health = 2; health = 2;
name = "itemization"; name = "itemization";
notify = false; notify = false;
description = "Summon a random item. ANY item.";
} }
@Override @Override

View File

@ -18,6 +18,7 @@ public class RotateRitual extends Ritual {
backfire = 0.05; backfire = 0.05;
name = "rotation"; name = "rotation";
notify = false; notify = false;
description = "Rotate your target by 180 degrees.";
} }
@Override @Override

View File

@ -17,6 +17,7 @@ public class SnowmanRitual extends Ritual {
addIngredient(Material.WHEAT, 32); addIngredient(Material.WHEAT, 32);
health = 10; health = 10;
name = "snowing"; name = "snowing";
description = "Cause a snowman invasion at the location of your enemy.";
} }
@Override @Override

View File

@ -17,6 +17,7 @@ public class SoftPenorRitual extends Ritual {
addIngredient(Material.WHEAT, 32); addIngredient(Material.WHEAT, 32);
backfire = 0.10; backfire = 0.10;
name = "disfunction"; name = "disfunction";
description = "Encase your enemy in a sand penor.";
} }
@Override @Override

View File

@ -15,6 +15,7 @@ public class SoundRitual extends Ritual {
name = "shadow sound"; name = "shadow sound";
health = 1; health = 1;
notify = false; notify = false;
description = "Plays a random sound to your target.";
} }
@Override @Override

View File

@ -18,6 +18,7 @@ public class SummoningRitual extends Ritual {
health = 6; health = 6;
name = "summoning"; name = "summoning";
backfire = 0.04; backfire = 0.04;
description = "Summons a player to the altar.";
} }
@Override @Override

View File

@ -20,6 +20,7 @@ public class WitherRitual extends Ritual {
health = 2; health = 2;
notify = false; notify = false;
lightning = true; lightning = true;
description = "Summons a wither.";
} }
@Override @Override

View File

@ -18,6 +18,7 @@ public class WoolingRitual extends Ritual {
health = 2; health = 2;
byproducts.add(new ItemStack(Material.WOOL, 100)); byproducts.add(new ItemStack(Material.WOOL, 100));
notify = false; notify = false;
description = "Summons a ton of wool.";
} }
@Override @Override