I will try to organize commits later on, but I'm about to fall asleep so this is just a random assortment of stuff
This commit is contained in:
B1G-FUNGUS 2021-10-01 22:15:53 -07:00
parent 0796b21039
commit 3c2c65aac2
2 changed files with 51 additions and 0 deletions

View File

@ -0,0 +1,24 @@
package top.penowl.quidproquo.rituals;
//TODO MAKE COBBLESTONE PENOR THAT ONLY SPAWNS AROUND CASTER
import org.bukkit.Location;
import org.bukkit.Material;
import org.bukkit.entity.Player;
import top.penowl.quidproquo.Ritual;
public class HardPenorRitual extends Ritual {
@Override
public void setup() {
addIngredient(Material.COBBLESTONE, 500);
addIngredient(Material.BONE, 10);
name = "erection";
}
@Override
public void execute(Player caster, Player target, Location location) {
}
}

View File

@ -0,0 +1,27 @@
package top.penowl.quidproquo.rituals;
//TODO MAKE A DIRT PENOR THAT CAN SPAWN AROUND OTHERS
import org.bukkit.Location;
import org.bukkit.Material;
import org.bukkit.entity.Player;
import top.penowl.quidproquo.Ritual;
public class SoftPenorRitual extends Ritual {
@Override
public void setup() {
addIngredient(Material.DIRT, 500);
addIngredient(Material.BONE, 20);
addIngredient(Material.REDSTONE, 15);
addIngredient(Material.WHEAT, 15);
backfire = 0.10;
name = "disfunction";
}
@Override
public void execute(Player caster, Player target, Location location) {
Location loc = target.getLocation();
}
}