Forgot to save

This commit is contained in:
B1G-FUNGUS 2021-10-04 09:38:27 -07:00
parent 912597c4f0
commit 7b46abf732
4 changed files with 19 additions and 23 deletions

View File

@ -21,7 +21,7 @@ public class BatSpewRitual extends Ritual {
@Override @Override
public void execute(Player caster, Player target, Location location) { public void execute(Player caster, Player target, Location location) {
for (int i = 0; i < 20; i++) { for (int i = 0; i < 20; i++) {
target.getWorld().spawnEntity(target.getLocation(), EntityType.CHICKEN); target.getWorld().spawnEntity(target.getLocation(), EntityType.BAT);
} }
} }

View File

@ -1,5 +1,4 @@
package top.penowl.quidproquo.rituals; package top.penowl.quidproquo.rituals;
//TODO TEST
import org.bukkit.Location; import org.bukkit.Location;
import org.bukkit.Material; import org.bukkit.Material;
@ -12,17 +11,19 @@ public class HardPenorRitual extends Ritual {
@Override @Override
public void setup() { public void setup() {
addIngredient(Material.COBBLESTONE, 500); addIngredient(Material.COBBLESTONE, 1);
addIngredient(Material.BONE, 10); addIngredient(Material.BONE, 1);
addIngredient(Material.REDSTONE, 16);
addIngredient(Material.WHEAT, 32);
backfire = 0.10;
name = "erection"; name = "erection";
} }
@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 = caster.getLocation().getBlock();
Block ball1 = shaft.getRelative(2, -1, 0); Block ball1 = shaft.getRelative(2, 0, -1);
Block ball2 = shaft.getRelative(-2,-1,0); Block ball2 = shaft.getRelative(-2, 0, -1);
//TODO USE ELEGANT MATHEMATICS INSTEAD OF SCUFFED IF STATEMENTS
for(int d = 0; d < 8; d ++) { for(int d = 0; d < 8; d ++) {
int x = 0; int x = 0;
if(d < 3) x = 1; if(d < 3) x = 1;
@ -30,24 +31,23 @@ public class HardPenorRitual extends Ritual {
int z = 0; int z = 0;
if(d % 3 == 0) z = 1; if(d % 3 == 0) z = 1;
if(d % 3 == 1) z = -1; if(d % 3 == 1) z = -1;
for(int y = 0; y < 15; y++) { for(int y = 0; y < 12; y++) {
Block changingBlock = shaft.getRelative(x,y,z); Block changingBlock = shaft.getRelative(x,y,z);
if(changingBlock.getType() == Material.AIR) if(changingBlock.getType() == Material.AIR)
changingBlock.setType(Material.COBBLESTONE); changingBlock.setType(Material.SAND);
} }
} }
for(int x = 0; x < 3; x ++) { for(int x = 0; x < 3; x ++) {
for(int y = 0; y < 3; y ++) { for(int y = 0; y < 3; y ++) {
for(int z = 0; z < 3; z ++) { for(int z = 0; z < 3; z ++) {
Block changingBlock1 = ball1.getRelative(x,y,z); Block changingBlock1 = ball1.getRelative(x,y,z);
Block changingBlock2 = ball2.getRelative(x,y,z); Block changingBlock2 = ball2.getRelative(x*-1,y,z);
if(changingBlock1.getType() == Material.AIR) if(changingBlock1.getType() == Material.AIR)
changingBlock1.setType(Material.COBBLESTONE); changingBlock1.setType(Material.SAND);
if(changingBlock2.getType() == Material.AIR) if(changingBlock2.getType() == Material.AIR)
changingBlock1.setType(Material.COBBLESTONE); changingBlock2.setType(Material.SAND);
} }
} }
} }
} }
} }

View File

@ -1,7 +1,5 @@
package top.penowl.quidproquo.rituals; package top.penowl.quidproquo.rituals;
//TODO TEST THE PENOR
import org.bukkit.Bukkit;
import org.bukkit.Location; import org.bukkit.Location;
import org.bukkit.Material; import org.bukkit.Material;
import org.bukkit.block.Block; import org.bukkit.block.Block;
@ -13,11 +11,10 @@ public class SoftPenorRitual extends Ritual {
@Override @Override
public void setup() { public void setup() {
/* addIngredient(Material.DIRT, 500); addIngredient(Material.SAND, 1);
addIngredient(Material.BONE, 20); addIngredient(Material.BONE, 1);
addIngredient(Material.REDSTONE, 15); addIngredient(Material.REDSTONE, 16);
addIngredient(Material.WHEAT, 15); */ addIngredient(Material.WHEAT, 32);
addIngredient(Material.MOSSY_COBBLESTONE, 1);
backfire = 0.10; backfire = 0.10;
name = "disfunction"; name = "disfunction";
} }
@ -53,4 +50,4 @@ public class SoftPenorRitual extends Ritual {
} }
} }
} }
} }

View File

@ -2,7 +2,6 @@ package top.penowl.quidproquo.rituals;
import org.bukkit.Location; import org.bukkit.Location;
import org.bukkit.Material; import org.bukkit.Material;
import org.bukkit.entity.EntityType;
import org.bukkit.entity.Player; import org.bukkit.entity.Player;
import org.bukkit.potion.PotionEffect; import org.bukkit.potion.PotionEffect;
import org.bukkit.potion.PotionEffectType; import org.bukkit.potion.PotionEffectType;
@ -28,4 +27,4 @@ public class SummoningRitual extends Ritual {
location.getWorld().createExplosion(location, 5F); location.getWorld().createExplosion(location, 5F);
} }
} }