Changes to commands
This commit is contained in:
parent
3ad48605b3
commit
1a4fcaabfb
@ -35,7 +35,7 @@ public class Commands implements CommandExecutor, TabCompleter {
|
||||
|
||||
@Override
|
||||
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")) {
|
||||
List<String> ritualNames = new ArrayList<String>(recipes.keySet());
|
||||
Collections.sort(ritualNames);
|
||||
@ -96,6 +96,7 @@ 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\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()));
|
||||
|
@ -32,6 +32,9 @@ public abstract class Ritual {
|
||||
// name of ritual, should be a gerund
|
||||
public String name = "unnamed";
|
||||
|
||||
// short description of ritual
|
||||
public String description = "";
|
||||
|
||||
// whether you want a lightning effect
|
||||
public Boolean lightning = false;
|
||||
|
||||
|
@ -20,6 +20,7 @@ public class AnvilRitual extends Ritual {
|
||||
health = 5;
|
||||
backfire = 0.5;
|
||||
notify = false;
|
||||
description = "Drop an anvil over your foe.";
|
||||
}
|
||||
|
||||
@Override
|
||||
|
@ -16,6 +16,7 @@ public class BatSpewRitual extends Ritual {
|
||||
addSacrifice(EntityType.CHICKEN, 1);
|
||||
name = "bat spew";
|
||||
backfire = 0.1;
|
||||
description = "Summon a cauldron of bats to strike fear into your enemy.";
|
||||
}
|
||||
|
||||
@Override
|
||||
|
@ -37,6 +37,7 @@ public class BlockShiftRitual extends Ritual {
|
||||
addIngredient(Material.ENDER_PEARL, 1);
|
||||
name = "block shift";
|
||||
health = 3;
|
||||
description = "Shift reality around you.";
|
||||
}
|
||||
|
||||
@Override
|
||||
|
@ -17,6 +17,7 @@ public class ChickenSpewRitual extends Ritual {
|
||||
health = 3;
|
||||
name = "chicken spew";
|
||||
backfire = 0.1;
|
||||
description = "Summon a flock of chickens to floof your enemy's mental state.";
|
||||
}
|
||||
|
||||
@Override
|
||||
|
@ -22,6 +22,7 @@ public class ChugJugRitual extends Ritual {
|
||||
addSacrifice(EntityType.WITCH, 1);
|
||||
health = 10;
|
||||
name = "chug jug";
|
||||
description = "Summon a chug-jug'ed witch to poison your enemy!";
|
||||
}
|
||||
|
||||
@Override
|
||||
|
@ -17,6 +17,7 @@ public class CreeperHissRitual extends Ritual {
|
||||
name = "creeper hissing";
|
||||
health = 1;
|
||||
notify = false;
|
||||
description = "Play a creeper hiss to your enemy.";
|
||||
}
|
||||
|
||||
@Override
|
||||
|
@ -18,6 +18,7 @@ public class CrystalizationRtiual extends Ritual {
|
||||
name = "crystalization";
|
||||
health = 2;
|
||||
notify = false;
|
||||
description = "Combine ingredients into a ender crystal.";
|
||||
}
|
||||
|
||||
@Override
|
||||
|
@ -22,6 +22,7 @@ public class DragonRitual extends Ritual {
|
||||
name = "dragon summoning";
|
||||
health = 3;
|
||||
lightning = true;
|
||||
description = "Summon the fearsome Ender Dragon.";
|
||||
}
|
||||
|
||||
@Override
|
||||
|
@ -23,6 +23,7 @@ public class FakePlayerRitual extends Ritual {
|
||||
name = "player illusion";
|
||||
notify = false;
|
||||
health = 4;
|
||||
description = "Summon a ghost nametag to spook your foe.";
|
||||
}
|
||||
|
||||
@Override
|
||||
|
@ -14,6 +14,7 @@ public class FeedingRitual extends Ritual {
|
||||
addIngredient(Material.WHEAT, 16);
|
||||
health = 1;
|
||||
name = "feeding";
|
||||
description = "Restore you and your target's food levels to maximum.";
|
||||
}
|
||||
|
||||
@Override
|
||||
|
@ -19,6 +19,7 @@ public class FillerRitual extends Ritual {
|
||||
name = "trolling";
|
||||
health = 2;
|
||||
backfire = 0.2;
|
||||
description = "Fill your foe's inventory with junk!";
|
||||
}
|
||||
|
||||
@Override
|
||||
|
@ -17,6 +17,7 @@ public class GBJRitual extends Ritual {
|
||||
name = "caging";
|
||||
health = 5;
|
||||
backfire = 0.2;
|
||||
description = "Trap your foe in the wagie cage!";
|
||||
}
|
||||
|
||||
@Override
|
||||
|
@ -18,6 +18,7 @@ public class GetLuckyRitual extends Ritual {
|
||||
lightning = true;
|
||||
name = "daring";
|
||||
notify = false;
|
||||
description = "Flip a coin and either nuke your base or get mountains of gold.";
|
||||
}
|
||||
|
||||
@Override
|
||||
|
@ -16,6 +16,7 @@ public class HardPenorRitual extends Ritual {
|
||||
addIngredient(Material.REDSTONE, 16);
|
||||
addIngredient(Material.WHEAT, 32);
|
||||
name = "erection";
|
||||
description = "Encase your foe in a hard penor.";
|
||||
}
|
||||
|
||||
@Override
|
||||
|
@ -14,6 +14,7 @@ public class HealRitual extends Ritual {
|
||||
addIngredient(Material.WHEAT, 16);
|
||||
addIngredient(Material.GOLD_NUGGET, 1);
|
||||
name = "healing";
|
||||
description = "Heal both you and your target for two hearts.";
|
||||
}
|
||||
|
||||
@Override
|
||||
|
@ -29,6 +29,7 @@ public class HerobrineRitual extends Ritual {
|
||||
health = 10;
|
||||
name = "herobrine";
|
||||
backfire = 0.1;
|
||||
description = "Summon Herobrine to vanquish your foe!";
|
||||
}
|
||||
@Override
|
||||
public void execute(Player caster, Player target, Location location) {
|
||||
|
@ -16,6 +16,7 @@ public class HitRitual extends Ritual {
|
||||
name = "shadow hit";
|
||||
health = 1;
|
||||
notify = false;
|
||||
description = "Play a fake hit noise to someone.";
|
||||
}
|
||||
|
||||
@Override
|
||||
|
@ -17,6 +17,7 @@ public class KickingRitual extends Ritual {
|
||||
health = 3;
|
||||
name = "kicking";
|
||||
backfire = 0.4;
|
||||
description = "Kick your enemy from the server!";
|
||||
}
|
||||
|
||||
@Override
|
||||
|
@ -14,6 +14,7 @@ public class LavaRitual extends Ritual {
|
||||
addIngredient(Material.WHEAT, 64);
|
||||
backfire = 0.10;
|
||||
name = "combustion";
|
||||
description = "Light your enemy on fire for a short period.";
|
||||
}
|
||||
|
||||
@Override
|
||||
|
@ -19,6 +19,7 @@ public class LightQuicktimeRitual extends Ritual {
|
||||
name = "quicktime lite";
|
||||
health = 4;
|
||||
backfire = 0.3;
|
||||
description = "Force your enemy to undergo a quicktime event.";
|
||||
}
|
||||
|
||||
@Override
|
||||
|
@ -16,6 +16,8 @@ public class LightningRitual extends Ritual {
|
||||
addIngredient(Material.WHEAT, 64);
|
||||
addIngredient(Material.GLOWSTONE, 16);
|
||||
name = "lightning location";
|
||||
description = "Send a bolt of locating lightning to all players.";
|
||||
notify = false;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
@ -20,6 +20,7 @@ public class MidasRitual extends Ritual {
|
||||
addIngredient(Material.WHEAT, 64*3);
|
||||
name = "midas";
|
||||
health = 5;
|
||||
description = "Turn the block your enemy is looking at to gold.";
|
||||
}
|
||||
|
||||
@Override
|
||||
|
@ -21,6 +21,7 @@ public class QuicktimeRitual extends Ritual {
|
||||
name = "quicktime";
|
||||
health = 4;
|
||||
backfire = 0.15;
|
||||
description = "Force your enemy to undergo a quicktime event.";
|
||||
}
|
||||
|
||||
@Override
|
||||
|
@ -29,6 +29,7 @@ public class RSpawnEggRitual extends Ritual {
|
||||
addIngredient(Material.WHEAT, 64);
|
||||
name = "egging";
|
||||
health = 2;
|
||||
description = "Summon a random spawn egg.";
|
||||
}
|
||||
|
||||
@Override
|
||||
|
@ -23,6 +23,7 @@ public class RandomItemRitual extends Ritual {
|
||||
health = 2;
|
||||
name = "itemization";
|
||||
notify = false;
|
||||
description = "Summon a random item. ANY item.";
|
||||
}
|
||||
|
||||
@Override
|
||||
|
@ -18,6 +18,7 @@ public class RotateRitual extends Ritual {
|
||||
backfire = 0.05;
|
||||
name = "rotation";
|
||||
notify = false;
|
||||
description = "Rotate your target by 180 degrees.";
|
||||
}
|
||||
|
||||
@Override
|
||||
|
@ -17,6 +17,7 @@ public class SnowmanRitual extends Ritual {
|
||||
addIngredient(Material.WHEAT, 32);
|
||||
health = 10;
|
||||
name = "snowing";
|
||||
description = "Cause a snowman invasion at the location of your enemy.";
|
||||
}
|
||||
|
||||
@Override
|
||||
|
@ -17,6 +17,7 @@ public class SoftPenorRitual extends Ritual {
|
||||
addIngredient(Material.WHEAT, 32);
|
||||
backfire = 0.10;
|
||||
name = "disfunction";
|
||||
description = "Encase your enemy in a sand penor.";
|
||||
}
|
||||
|
||||
@Override
|
||||
|
@ -15,6 +15,7 @@ public class SoundRitual extends Ritual {
|
||||
name = "shadow sound";
|
||||
health = 1;
|
||||
notify = false;
|
||||
description = "Plays a random sound to your target.";
|
||||
}
|
||||
|
||||
@Override
|
||||
|
@ -18,6 +18,7 @@ public class SummoningRitual extends Ritual {
|
||||
health = 6;
|
||||
name = "summoning";
|
||||
backfire = 0.04;
|
||||
description = "Summons a player to the altar.";
|
||||
}
|
||||
|
||||
@Override
|
||||
|
@ -20,6 +20,7 @@ public class WitherRitual extends Ritual {
|
||||
health = 2;
|
||||
notify = false;
|
||||
lightning = true;
|
||||
description = "Summons a wither.";
|
||||
}
|
||||
|
||||
@Override
|
||||
|
@ -18,6 +18,7 @@ public class WoolingRitual extends Ritual {
|
||||
health = 2;
|
||||
byproducts.add(new ItemStack(Material.WOOL, 100));
|
||||
notify = false;
|
||||
description = "Summons a ton of wool.";
|
||||
}
|
||||
|
||||
@Override
|
||||
|
Loading…
x
Reference in New Issue
Block a user