1...
This commit is contained in:
@@ -0,0 +1,136 @@
|
||||
#modloaded randomtweaker
|
||||
#priority -10
|
||||
#reloadable
|
||||
|
||||
import mods.jei.JEI;
|
||||
import mods.randomtweaker.jei.IJeiPanel;
|
||||
import mods.randomtweaker.jei.IJeiUtils;
|
||||
|
||||
var creationforgeJEI as IJeiPanel = JEI.createJei("aoa_creation_forge", "召唤祭坛");
|
||||
creationforgeJEI.setModid("Creation Forge");
|
||||
creationforgeJEI.setIcon(<aoa3:creation_forge>);
|
||||
creationforgeJEI.addRecipeCatalyst(<aoa3:creation_forge>);
|
||||
creationforgeJEI.setBackground(IJeiUtils.createBackground(150, 55));
|
||||
creationforgeJEI.addSlot(IJeiUtils.createItemSlot(40, 25, true)); // input
|
||||
creationforgeJEI.addSlot(IJeiUtils.createItemSlot(95, 25, false)); // output
|
||||
creationforgeJEI.addElement(IJeiUtils.createArrowElement(64, 25, 0));
|
||||
creationforgeJEI.onTooltip(function(mouseX, mouseY) as string[]{
|
||||
if (mouseX <= 81 && mouseX >= 68 && mouseY <= 22 && mouseY >= 6) {
|
||||
return ["右击"];
|
||||
}
|
||||
return [];
|
||||
});
|
||||
creationforgeJEI.register();
|
||||
|
||||
|
||||
val creationforge1 = JEI.createJeiRecipe("aoa_creation_forge");
|
||||
creationforge1.addInput(<aoa3:penguin_slab>);
|
||||
creationforge1.setOutputs([<minecraft:spawn_egg>.withTag({EntityTag: {id: "aoa3:penguin"}})]);
|
||||
creationforge1.build();
|
||||
|
||||
val creationforge2 = JEI.createJeiRecipe("aoa_creation_forge");
|
||||
creationforge2.addInput(<aoa3:draggy_slab>);
|
||||
creationforge2.setOutputs([<minecraft:spawn_egg>.withTag({EntityTag: {id: "aoa3:draggy"}})]);
|
||||
creationforge2.build();
|
||||
|
||||
val creationforge3 = JEI.createJeiRecipe("aoa_creation_forge");
|
||||
creationforge3.addInput(<aoa3:compeer_slab>);
|
||||
creationforge3.setOutputs([<minecraft:spawn_egg>.withTag({EntityTag: {id: "aoa3:compeer"}})]);
|
||||
creationforge3.build();
|
||||
|
||||
val creationforge4 = JEI.createJeiRecipe("aoa_creation_forge");
|
||||
creationforge4.addInput(<aoa3:waggy_slab>);
|
||||
creationforge4.setOutputs([<minecraft:spawn_egg>.withTag({EntityTag: {id: "aoa3:waggy"}})]);
|
||||
creationforge4.build();
|
||||
|
||||
val creationforge5 = JEI.createJeiRecipe("aoa_creation_forge");
|
||||
creationforge5.addInput(<aoa3:spikeback_slab>);
|
||||
creationforge5.setOutputs([<minecraft:spawn_egg>.withTag({EntityTag: {id: "aoa3:spikeback"}})]);
|
||||
creationforge5.build();
|
||||
|
||||
val creationforge6 = JEI.createJeiRecipe("aoa_creation_forge");
|
||||
creationforge6.addInput(<aoa3:rammerhorn_slab>);
|
||||
creationforge6.setOutputs([<minecraft:spawn_egg>.withTag({EntityTag: {id: "aoa3:rammerhorn"}})]);
|
||||
creationforge6.build();
|
||||
|
||||
val creationforge7 = JEI.createJeiRecipe("aoa_creation_forge");
|
||||
creationforge7.addInput(<aoa3:spraggy_slab>);
|
||||
creationforge7.setOutputs([<minecraft:spawn_egg>.withTag({EntityTag: {id: "aoa3:spraggy"}})]);
|
||||
creationforge7.build();
|
||||
|
||||
val creationforge8 = JEI.createJeiRecipe("aoa_creation_forge");
|
||||
creationforge8.addInput(<aoa3:plateosaur_slab>);
|
||||
creationforge8.setOutputs([<minecraft:spawn_egg>.withTag({EntityTag: {id: "aoa3:plateosaur"}})]);
|
||||
creationforge8.build();
|
||||
|
||||
val creationforge9 = JEI.createJeiRecipe("aoa_creation_forge");
|
||||
creationforge9.addInput(<aoa3:hellquin_slab>);
|
||||
creationforge9.setOutputs([<minecraft:spawn_egg>.withTag({EntityTag: {id: "aoa3:hellquin"}})]);
|
||||
creationforge9.build();
|
||||
|
||||
val creationforge10 = JEI.createJeiRecipe("aoa_creation_forge");
|
||||
creationforge10.addInput(<aoa3:craggy_slab>);
|
||||
creationforge10.setOutputs([<minecraft:spawn_egg>.withTag({EntityTag: {id: "aoa3:craggy"}})]);
|
||||
creationforge10.build();
|
||||
|
||||
val creationforge11 = JEI.createJeiRecipe("aoa_creation_forge");
|
||||
creationforge11.addInput(<aoa3:horntail_slab>);
|
||||
creationforge11.setOutputs([<minecraft:spawn_egg>.withTag({EntityTag: {id: "aoa3:horntail"}})]);
|
||||
creationforge11.build();
|
||||
|
||||
val creationforge12 = JEI.createJeiRecipe("aoa_creation_forge");
|
||||
creationforge12.addInput(<aoa3:shaddy_slab>);
|
||||
creationforge12.setOutputs([<minecraft:spawn_egg>.withTag({EntityTag: {id: "aoa3:shaddy"}})]);
|
||||
creationforge12.build();
|
||||
|
||||
val creationforge13 = JEI.createJeiRecipe("aoa_creation_forge");
|
||||
creationforge13.addInput(<aoa3:gnawer_slab>);
|
||||
creationforge13.setOutputs([<minecraft:spawn_egg>.withTag({EntityTag: {id: "aoa3:gnawer"}})]);
|
||||
creationforge13.build();
|
||||
|
||||
val creationforge14 = JEI.createJeiRecipe("aoa_creation_forge");
|
||||
creationforge14.addInput(<aoa3:corby_slab>);
|
||||
creationforge14.setOutputs([<minecraft:spawn_egg>.withTag({EntityTag: {id: "aoa3:corby"}})]);
|
||||
creationforge14.build();
|
||||
|
||||
val creationforge15 = JEI.createJeiRecipe("aoa_creation_forge");
|
||||
creationforge15.addInput(<aoa3:ender_carrier_slab>);
|
||||
creationforge15.setOutputs([<minecraft:spawn_egg>.withTag({EntityTag: {id: "aoa3:ender_carrier"}})]);
|
||||
creationforge15.build();
|
||||
|
||||
val creationforge16 = JEI.createJeiRecipe("aoa_creation_forge");
|
||||
creationforge16.addInput(<aoa3:blissard_slab>);
|
||||
creationforge16.setOutputs([<minecraft:spawn_egg>.withTag({EntityTag: {id: "aoa3:blissard"}})]);
|
||||
creationforge16.build();
|
||||
|
||||
val creationforge17 = JEI.createJeiRecipe("aoa_creation_forge");
|
||||
creationforge17.addInput(<aoa3:goofer_slab>);
|
||||
creationforge17.setOutputs([<minecraft:spawn_egg>.withTag({EntityTag: {id: "aoa3:goofer"}})]);
|
||||
creationforge17.build();
|
||||
|
||||
val creationforge18 = JEI.createJeiRecipe("aoa_creation_forge");
|
||||
creationforge18.addInput(<aoa3:mecha_cyclops_slab>);
|
||||
creationforge18.setOutputs([<minecraft:spawn_egg>.withTag({EntityTag: {id: "aoa3:mecha_cyclops"}})]);
|
||||
creationforge18.build();
|
||||
|
||||
val creationforge19 = JEI.createJeiRecipe("aoa_creation_forge");
|
||||
creationforge19.addInput(<aoa3:alluricorn_slab>);
|
||||
creationforge19.setOutputs([<minecraft:spawn_egg>.withTag({EntityTag: {id: "aoa3:alluricorn"}})]);
|
||||
creationforge19.build();
|
||||
|
||||
val creationforge20 = JEI.createJeiRecipe("aoa_creation_forge");
|
||||
creationforge20.addInput(<aoa3:construct_of_servility_slab>);
|
||||
creationforge20.setOutputs([<minecraft:spawn_egg>.withTag({EntityTag: {id: "aoa3:construct_of_servility"}})]);
|
||||
creationforge20.build();
|
||||
|
||||
val creationforge21 = JEI.createJeiRecipe("aoa_creation_forge");
|
||||
creationforge21.addInput(<aoa3:healing_golem_slab>);
|
||||
creationforge21.setOutputs([<minecraft:spawn_egg>.withTag({EntityTag: {id: "aoa3:healing_golem"}})]);
|
||||
creationforge21.build();
|
||||
|
||||
val creationforge22 = JEI.createJeiRecipe("aoa_creation_forge");
|
||||
creationforge22.addInput(<aoa3:mecha_skellox_slab>);
|
||||
creationforge22.setOutputs([<minecraft:spawn_egg>.withTag({EntityTag: {id: "aoa3:mecha_skellox"}})]);
|
||||
creationforge22.build();
|
||||
|
||||
|
||||
@@ -188,5 +188,44 @@ fallentowerjei19.addOutput(<ore:oreUltimate>);
|
||||
fallentowerjei19.addOutput(<ore:oreMatrix>);
|
||||
fallentowerjei19.build();
|
||||
|
||||
val fallentowerjei20 = JEI.createJeiRecipe("fallen_tower_ritual");
|
||||
fallentowerjei20.addInput(<fluid:lifeessence>*5000000);
|
||||
fallentowerjei20.addInput(<contenttweaker:demonic_ember>);
|
||||
fallentowerjei20.addOutput(<ore:oreFirestone>);
|
||||
fallentowerjei20.addOutput(<ore:oreArdite>);
|
||||
fallentowerjei20.addOutput(<ore:oreCobalt>);
|
||||
fallentowerjei20.build();
|
||||
|
||||
val fallentowerjei21 = JEI.createJeiRecipe("fallen_tower_ritual");
|
||||
fallentowerjei21.addInput(<fluid:lifeessence>*5000000);
|
||||
fallentowerjei21.addInput(<contenttweaker:vibranium_alloy_cluster>);
|
||||
fallentowerjei21.addOutput(<ore:oreGalena>);
|
||||
fallentowerjei21.addOutput(<ore:oreBauxite>);
|
||||
fallentowerjei21.addOutput(<ore:orePyrite>);
|
||||
fallentowerjei21.addOutput(<ore:oreCinnabar>);
|
||||
fallentowerjei21.addOutput(<ore:oreSphalerite>);
|
||||
fallentowerjei21.addOutput(<ore:oreSodalite>);
|
||||
fallentowerjei21.build();
|
||||
|
||||
val fallentowerjei22 = JEI.createJeiRecipe("fallen_tower_ritual");
|
||||
fallentowerjei22.addInput(<fluid:lifeessence>*5000000);
|
||||
fallentowerjei22.addInput(<contenttweaker:lunar_binding_fabrial>);
|
||||
fallentowerjei22.addOutput(<ore:oreBoundLunarStone>);
|
||||
fallentowerjei22.addOutput(<ore:oreRunium>);
|
||||
fallentowerjei22.build();
|
||||
|
||||
val fallentowerjei23 = JEI.createJeiRecipe("fallen_tower_ritual");
|
||||
fallentowerjei23.addInput(<fluid:lifeessence>*5000000);
|
||||
fallentowerjei23.addInput(<contenttweaker:void_calling_fabrial>);
|
||||
fallentowerjei23.addOutput(<ore:oreLitherite>);
|
||||
fallentowerjei23.addOutput(<ore:oreMica>);
|
||||
fallentowerjei23.addOutput(<ore:oreErodium>);
|
||||
fallentowerjei23.addOutput(<ore:oreKyronite>);
|
||||
fallentowerjei23.addOutput(<ore:orePladium>);
|
||||
fallentowerjei23.addOutput(<ore:oreIonite>);
|
||||
fallentowerjei23.addOutput(<ore:oreIonite>);
|
||||
fallentowerjei23.addOutput(<ore:oreLonsdaleite>);
|
||||
fallentowerjei23.build();
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -0,0 +1,146 @@
|
||||
#modloaded randomtweaker
|
||||
#priority -10
|
||||
#reloadable
|
||||
|
||||
import mods.jei.JEI;
|
||||
import mods.randomtweaker.jei.IJeiPanel;
|
||||
import mods.randomtweaker.jei.IJeiUtils;
|
||||
|
||||
var lottototemlootJEI as IJeiPanel = JEI.createJei("lotto_totem_loot", "乐透图腾战利品");
|
||||
lottototemlootJEI.setModid("MeatballCraft");
|
||||
lottototemlootJEI.setIcon(<aoa3:lotto_totem>);
|
||||
lottototemlootJEI.addRecipeCatalyst(<aoa3:lotto_totem>);
|
||||
lottototemlootJEI.setBackground(IJeiUtils.createBackground(150, 55));
|
||||
lottototemlootJEI.addSlot(IJeiUtils.createItemSlot(40, 25, true)); // input
|
||||
lottototemlootJEI.addSlot(IJeiUtils.createItemSlot(95, 25, false)); // output
|
||||
lottototemlootJEI.addElement(IJeiUtils.createArrowElement(64, 25, 0));
|
||||
lottototemlootJEI.addElement(IJeiUtils.createImageElement("mouseLeft", 68, 6, 13, 14, 0, 0, "contenttweaker:textures/gui/mouse_right.png", 16, 16));
|
||||
lottototemlootJEI.onTooltip(function(mouseX, mouseY) as string[]{
|
||||
if (mouseX <= 81 && mouseX >= 68 && mouseY <= 22 && mouseY >= 6) {
|
||||
return ["放置然后开赌"];
|
||||
}
|
||||
return [];
|
||||
});
|
||||
lottototemlootJEI.register();
|
||||
|
||||
|
||||
val lottototem1 = JEI.createJeiRecipe("lotto_totem_loot");
|
||||
lottototem1.addInput(<aoa3:lotto_totem>);
|
||||
lottototem1.setOutputs([<aoa3:golden_upgrade_kit>]);
|
||||
lottototem1.build();
|
||||
|
||||
val lottototem2 = JEI.createJeiRecipe("lotto_totem_loot");
|
||||
lottototem2.addInput(<aoa3:lotto_totem>);
|
||||
lottototem2.setOutputs([<aoa3:magic_repair_dust>]);
|
||||
lottototem2.build();
|
||||
|
||||
val lottototem3 = JEI.createJeiRecipe("lotto_totem_loot");
|
||||
lottototem3.addInput(<aoa3:lotto_totem>);
|
||||
lottototem3.setOutputs([<aoa3:small_skill_crystal>]);
|
||||
lottototem3.build();
|
||||
|
||||
val lottototem4 = JEI.createJeiRecipe("lotto_totem_loot");
|
||||
lottototem4.addInput(<aoa3:lotto_totem>);
|
||||
lottototem4.setOutputs([<aoa3:medium_skill_crystal>]);
|
||||
lottototem4.build();
|
||||
|
||||
val lottototem5 = JEI.createJeiRecipe("lotto_totem_loot");
|
||||
lottototem5.addInput(<aoa3:lotto_totem>);
|
||||
lottototem5.setOutputs([<aoa3:large_skill_crystal>]);
|
||||
lottototem5.build();
|
||||
|
||||
val lottototem6 = JEI.createJeiRecipe("lotto_totem_loot");
|
||||
lottototem6.addInput(<aoa3:lotto_totem>);
|
||||
lottototem6.setOutputs([<aoa3:giant_skill_crystal>]);
|
||||
lottototem6.build();
|
||||
|
||||
val lottototem7 = JEI.createJeiRecipe("lotto_totem_loot");
|
||||
lottototem7.addInput(<aoa3:lotto_totem>);
|
||||
lottototem7.setOutputs([<minecraft:diamond>]);
|
||||
lottototem7.build();
|
||||
|
||||
val lottototem8 = JEI.createJeiRecipe("lotto_totem_loot");
|
||||
lottototem8.addInput(<aoa3:lotto_totem>);
|
||||
lottototem8.setOutputs([<minecraft:emerald>]);
|
||||
lottototem8.build();
|
||||
|
||||
val lottototem9 = JEI.createJeiRecipe("lotto_totem_loot");
|
||||
lottototem9.addInput(<aoa3:lotto_totem>);
|
||||
lottototem9.setOutputs([<minecraft:nether_star>]);
|
||||
lottototem9.build();
|
||||
|
||||
val lottototem10 = JEI.createJeiRecipe("lotto_totem_loot");
|
||||
lottototem10.addInput(<aoa3:lotto_totem>);
|
||||
lottototem10.setOutputs([<aoa3:colour_cannon>]);
|
||||
lottototem10.build();
|
||||
|
||||
val lottototem11 = JEI.createJeiRecipe("lotto_totem_loot");
|
||||
lottototem11.addInput(<aoa3:lotto_totem>);
|
||||
lottototem11.setOutputs([<minecraft:ghast_tear>]);
|
||||
lottototem11.build();
|
||||
|
||||
val lottototem12 = JEI.createJeiRecipe("lotto_totem_loot");
|
||||
lottototem12.addInput(<aoa3:lotto_totem>);
|
||||
lottototem12.setOutputs([<minecraft:experience_bottle>]);
|
||||
lottototem12.build();
|
||||
|
||||
val lottototem13 = JEI.createJeiRecipe("lotto_totem_loot");
|
||||
lottototem13.addInput(<aoa3:lotto_totem>);
|
||||
lottototem13.setOutputs([<minecraft:golden_apple>]);
|
||||
lottototem13.build();
|
||||
|
||||
val lottototem14 = JEI.createJeiRecipe("lotto_totem_loot");
|
||||
lottototem14.addInput(<aoa3:lotto_totem>);
|
||||
lottototem14.setOutputs([<aoa3:copper_coin>]);
|
||||
lottototem14.build();
|
||||
|
||||
val lottototem15 = JEI.createJeiRecipe("lotto_totem_loot");
|
||||
lottototem15.addInput(<aoa3:lotto_totem>);
|
||||
lottototem15.setOutputs([<aoa3:silver_coin>]);
|
||||
lottototem15.build();
|
||||
|
||||
val lottototem16 = JEI.createJeiRecipe("lotto_totem_loot");
|
||||
lottototem16.addInput(<aoa3:lotto_totem>);
|
||||
lottototem16.setOutputs([<aoa3:gold_coin>]);
|
||||
lottototem16.build();
|
||||
|
||||
val lottototem17 = JEI.createJeiRecipe("lotto_totem_loot");
|
||||
lottototem17.addInput(<aoa3:lotto_totem>);
|
||||
lottototem17.setOutputs([<biomesoplenty:gem:0>]);
|
||||
lottototem17.build();
|
||||
|
||||
val lottototem18 = JEI.createJeiRecipe("lotto_totem_loot");
|
||||
lottototem18.addInput(<aoa3:lotto_totem>);
|
||||
lottototem18.setOutputs([<biomesoplenty:gem:1>]);
|
||||
lottototem18.build();
|
||||
|
||||
val lottototem19 = JEI.createJeiRecipe("lotto_totem_loot");
|
||||
lottototem19.addInput(<aoa3:lotto_totem>);
|
||||
lottototem19.setOutputs([<biomesoplenty:gem:2>]);
|
||||
lottototem19.build();
|
||||
|
||||
val lottototem20 = JEI.createJeiRecipe("lotto_totem_loot");
|
||||
lottototem20.addInput(<aoa3:lotto_totem>);
|
||||
lottototem20.setOutputs([<biomesoplenty:gem:3>]);
|
||||
lottototem20.build();
|
||||
|
||||
val lottototem21 = JEI.createJeiRecipe("lotto_totem_loot");
|
||||
lottototem21.addInput(<aoa3:lotto_totem>);
|
||||
lottototem21.setOutputs([<biomesoplenty:gem:4>]);
|
||||
lottototem21.build();
|
||||
|
||||
val lottototem22 = JEI.createJeiRecipe("lotto_totem_loot");
|
||||
lottototem22.addInput(<aoa3:lotto_totem>);
|
||||
lottototem22.setOutputs([<biomesoplenty:gem:5>]);
|
||||
lottototem22.build();
|
||||
|
||||
val lottototem23 = JEI.createJeiRecipe("lotto_totem_loot");
|
||||
lottototem23.addInput(<aoa3:lotto_totem>);
|
||||
lottototem23.setOutputs([<biomesoplenty:gem:6>]);
|
||||
lottototem23.build();
|
||||
|
||||
val lottototem24 = JEI.createJeiRecipe("lotto_totem_loot");
|
||||
lottototem24.addInput(<aoa3:lotto_totem>);
|
||||
lottototem24.setOutputs([<biomesoplenty:gem:7>]);
|
||||
lottototem24.build();
|
||||
|
||||
@@ -329,6 +329,16 @@ rclickdimlet38.addInput(<contenttweaker:spark_of_unhallowing>);
|
||||
rclickdimlet38.setOutputs([<contenttweaker:recursion_of_growth>]);
|
||||
rclickdimlet38.build();
|
||||
|
||||
val rclickdimlet39 = JEI.createJeiRecipe("right_click_meatball");
|
||||
rclickdimlet39.addInput(<contenttweaker:kobblin_earth>);
|
||||
rclickdimlet39.setOutputs([<contenttweaker:kobblin_seedling>]);
|
||||
rclickdimlet39.build();
|
||||
|
||||
val rclickdimlet40 = JEI.createJeiRecipe("right_click_meatball");
|
||||
rclickdimlet40.addInput(<aoa3:flammable_dust>);
|
||||
rclickdimlet40.setOutputs([<aoa3:nethengeic_callstone>]);
|
||||
rclickdimlet40.build();
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user