Tweaked the hit ritual

This commit is contained in:
B1G-FUNGUS 2021-10-01 17:37:27 -07:00
parent 18c9b40605
commit 975504be41

View File

@ -11,14 +11,16 @@ public class HitRitual extends Ritual {
@Override
public void setup() {
addIngredient(Material.IRON_SWORD, 1);
addIngredient(Material.HAY_BLOCK, 1);
addIngredient(Material.WHEAT, 9);
name = "shadow hit";
health = 2;
}
@Override
public void execute(Player caster, Player target, Location location) {
target.playSound(target.getLocation(), Sound.SUCCESSFUL_HIT, 1, 1);
for(int i = 0; i < 3; i ++) {
target.playSound(target.getLocation(), Sound.SUCCESSFUL_HIT, 1, 1);
}
}
}