File Details
CTD-Mythos-1.12.2-0.9.1.jar
- B
- Jul 31, 2020
- 687.36 KB
- 60
- 1.12.2
- Forge
File Name
CTD-Mythos-1.12.2-0.9.1.jar
Supported Versions
- 1.12.2
Curse Maven Snippet
Added CraftTweaker support to both the Mythos Pedestal and Flight Wand!!
Added a WIP wand that allows flight by consuming Mythos.
Update JEI to be a lil' more descriptive.
Updated block harvest levels for most blocks.
Some potential issues have been fixed.
Add recipe to Mythos Pedestal
mods.ctdmythos.Pedestal.addRecipe(ItemStack input,ItemStack output);
ex: mods.ctdmythos.Pedestal.addRecipe(<minecraft:stone>,<minecraft:stone>*2);
Remove Recipe from Mythos Pedestal
mods.ctdmythos.Pedestal.removeRecipe(ItemStack input, ItemStack output);
ex: mods.ctdmythos.Pedestal.removeRecipe(<minecraft:stone>,<minecraft:stone>*2);
Add Flight Wand Catalyst
mods.ctdmythos.FlightWand.addRecipe(ItemStack input,int flightTime, int flightMulti, int resistTime);
ex: mods.ctdmythos.FlightWand.addRecipe(<minecraft:command_block>,255, 25, 122);
Add Flight Wand Catalyst
mods.ctdmythos.FlightWand.addRecipe(ItemStack input,int flightTime, int flightMulti);
ex: mods.ctdmythos.FlightWand.addRecipe(<minecraft:command_block>,255, 25);
Add Flight Wand Catalyst
mods.ctdmythos.FlightWand.addRecipe(ItemStack input,int flightTime);
ex: mods.ctdmythos.FlightWand.addRecipe(<minecraft:command_block>,255);
Remove Flight Wand Catalyst
mods.ctdmythos.FlightWand.removeRecipe(ItemStack input);
ex: mods.ctdmythos.FlightWand.removeRecipe(<minecraft:stone>);

