Adds a block shift ritual
This commit is contained in:
parent
e7ccd9df45
commit
3fe7b725ab
@ -2,7 +2,9 @@ package top.penowl.quidproquo.rituals;
|
|||||||
|
|
||||||
import org.bukkit.Location;
|
import org.bukkit.Location;
|
||||||
import org.bukkit.Material;
|
import org.bukkit.Material;
|
||||||
|
import org.bukkit.block.Block;
|
||||||
import org.bukkit.entity.Player;
|
import org.bukkit.entity.Player;
|
||||||
|
import java.util.Random;
|
||||||
|
|
||||||
import top.penowl.quidproquo.Ritual;
|
import top.penowl.quidproquo.Ritual;
|
||||||
|
|
||||||
@ -37,6 +39,18 @@ public class BlockShiftRitual extends Ritual {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void execute(Player caster, Player target, Location location) {
|
public void execute(Player caster, Player target, Location location) {
|
||||||
|
Random random = new Random();
|
||||||
|
Material fromMat = pMat[random.nextInt(64)];
|
||||||
|
Material toMat = pMat[random.nextInt(64)];
|
||||||
|
for(int x = -5; x <= 5; x ++) {
|
||||||
|
for(int y = -5; y <= 5; y ++) {
|
||||||
|
for(int z = -5; z <= 5; z ++) {
|
||||||
|
Block testBlock = target.getLocation().getBlock().getRelative(x, y, z);
|
||||||
|
if(testBlock.getType() == fromMat)
|
||||||
|
testBlock.setType(toMat);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user