use of net.silentchaos512.lib.registry.RecipeMaker in project SilentGems by SilentChaos512.
the class GuideBookGems method initChapters.
@SuppressWarnings("unused")
@Override
public void initChapters() {
RecipeMaker rec = SilentGems.registry.recipes;
// @formatter:off
// Getting Started
// Introduction
new GuideChapter(this, "introduction", entryGettingStarted, new ItemStack(ModItems.gem, 1, SilentGems.random.nextInt(32)), 1000, new PageTextOnly(this, 1), new PageTextOnly(this, 2), new PageTextOnly(this, 3)).setSpecial();
// Progression
ItemStack flintPickaxe = ModItems.pickaxe.constructTool(false, new ItemStack(Items.FLINT));
ToolHelper.setOriginalOwner(flintPickaxe, TOOL_OWNER_NAME);
ItemStack flintPickaxeBroken = StackHelper.safeCopy(flintPickaxe);
flintPickaxeBroken.setItemDamage(ToolHelper.getMaxDamage(flintPickaxeBroken));
ItemStack ironTipUpgrade = new ItemStack(ModItems.tipUpgrade);
ItemStack flintPickaxeIronTips = ModItems.tipUpgrade.applyToTool(flintPickaxe, ironTipUpgrade);
ItemStack gravel = new ItemStack(Blocks.GRAVEL);
ItemStack gemPickaxe = ModItems.pickaxe.constructTool(new ItemStack(Items.STICK), EnumGem.RUBY.getItem(), EnumGem.SAPPHIRE.getItem(), EnumGem.RUBY.getItem());
ToolHelper.setOriginalOwner(gemPickaxe, TOOL_OWNER_NAME);
ItemStack diamondTipUpgrade = new ItemStack(ModItems.tipUpgrade, 1, 2);
ItemStack gemPickaxeDiamondTips = ModItems.tipUpgrade.applyToTool(gemPickaxe, diamondTipUpgrade);
ItemStack katana = ModItems.katana.constructTool(true, EnumGem.LEPIDOLITE.getItemSuper(), EnumGem.OPAL.getItemSuper(), EnumGem.BLACK_DIAMOND.getItemSuper());
ToolHelper.setOriginalOwner(katana, TOOL_OWNER_NAME);
new GuideChapter(this, "progression", entryGettingStarted, flintPickaxeIronTips, 100, new PageTextOnly(this, 1), new PageCrafting(this, 2, rec.makeShapeless(new ItemStack(Items.FLINT), gravel, gravel)), new PageCrafting(this, 3, rec.makeShapedOre(flintPickaxe, "fff", " s ", " s ", 'f', Items.FLINT, 's', "stickWood")), new PageTextOnly(this, 4), new PageCrafting(this, 5, rec.makeShapeless(flintPickaxe, flintPickaxeBroken, Items.FLINT, Items.FLINT)), new PageTextOnly(this, 6), new PageCrafting(this, 7, rec.makeShapelessOre(flintPickaxeIronTips, flintPickaxe, ironTipUpgrade)), new PageCrafting(this, 8, rec.makeShapedOre(gemPickaxe, "rsr", " t ", " t ", 'r', EnumGem.RUBY.getItem(), 's', EnumGem.SAPPHIRE.getItem(), 't', "stickWood")), new PageTextOnly(this, 9), new PageCrafting(this, 10, rec.makeShapeless(gemPickaxeDiamondTips, gemPickaxe, diamondTipUpgrade)), new PageTextOnly(this, 11), new PageCrafting(this, 12, rec.makeShapedOre(katana, "lo", "d ", "r ", 'l', EnumGem.LEPIDOLITE.getItemSuper(), 'o', EnumGem.OPAL.getItemSuper(), 'd', EnumGem.BLACK_DIAMOND.getItemSuper(), 'r', ModItems.craftingMaterial.toolRodGold)), new PageTextOnly(this, 13)).setImportant();
// Tools, Armor, and Parts
// Parts
// List<IGuidePage> pagesParts = Lists.newArrayList();
// pagesParts.add(new PageTextOnly(this, 1));
// for (ToolPart part : ToolPartRegistry.getMains()) {
// pagesParts.add(new PageToolPart(this, 0, part));
// }
// new GuideChapter(this, "toolParts", entryTools, EnumGem.getRandom().getItem(), 100,
// pagesParts.toArray(new IGuidePage[pagesParts.size()]));
// Axes
ItemStack toolsEntryRod = SilentGems.random.nextFloat() < 0.67f ? ModItems.craftingMaterial.toolRodGold : ModItems.craftingMaterial.toolRodSilver;
ItemStack chAxeGem = EnumGem.getRandom().getItemSuper();
ItemStack chAxe = makeTool(ModItems.axe, toolsEntryRod, chAxeGem, 3);
new GuideChapter(this, "axe", entryTools, chAxe, new PageTextOnly(this, 1), new PageCrafting(this, 2, rec.makeShapedOre(chAxe, "gg", "gr", " r", 'g', chAxeGem, 'r', toolsEntryRod)).setNoText());
// Bows
ItemStack chBowGem = EnumGem.getRandom().getItemSuper();
ItemStack chBow = makeTool(ModItems.bow, toolsEntryRod, chBowGem, 3);
new GuideChapter(this, "bow", entryTools, chBow, new PageTextOnly(this, 1), new PageCrafting(this, 2, rec.makeShapedOre(chBow, "rgs", "g s", "rgs", 'g', chBowGem, 'r', toolsEntryRod, 's', ModItems.craftingMaterial.gildedString)));
// Daggers
ItemStack chDaggerGem = EnumGem.getRandom().getItemSuper();
ItemStack chDagger = makeTool(ModItems.dagger, toolsEntryRod, chDaggerGem, 1);
new GuideChapter(this, "dagger", entryTools, chDagger, new PageTextOnly(this, 1), new PageCrafting(this, 2, rec.makeShapedOre(chDagger, "g", "r", "f", 'g', chDaggerGem, 'r', toolsEntryRod, 'f', "ingotGold")));
// Hoes
ItemStack chHoeGem = EnumGem.getRandom().getItemSuper();
ItemStack chHoe = makeTool(ModItems.hoe, toolsEntryRod, chHoeGem, 2);
new GuideChapter(this, "hoe", entryTools, chHoe, new PageTextOnly(this, 1), new PageCrafting(this, 2, rec.makeShapedOre(chHoe, "gg", " r", " r", 'g', chHoeGem, 'r', toolsEntryRod)).setNoText());
// Katana
ItemStack chKatanaGem = EnumGem.getRandom().getItemSuper();
ItemStack chKatana = makeTool(ModItems.katana, toolsEntryRod, chKatanaGem, 3);
new GuideChapter(this, "katana", entryTools, chKatana, new PageTextOnly(this, 1), new PageCrafting(this, 2, rec.makeShapedOre(chKatana, "gg", "g ", "r ", 'g', chKatanaGem, 'r', toolsEntryRod)).setNoText());
// Machetes
ItemStack chMacheteGem = EnumGem.getRandom().getItemSuper();
ItemStack chMachete = makeTool(ModItems.machete, toolsEntryRod, chMacheteGem, 3);
new GuideChapter(this, "machete", entryTools, chMachete, new PageTextOnly(this, 1), new PageCrafting(this, 2, rec.makeShapedOre(chMachete, " gg", " g ", "r ", 'g', chMacheteGem, 'r', toolsEntryRod)).setNoText(), new PageTextOnly(this, 3), new PageTextOnly(this, 4));
// Paxels
ItemStack chPaxelGem = EnumGem.getRandom().getItemSuper();
ItemStack chPaxel = makeTool(ModItems.paxel, toolsEntryRod, chPaxelGem, 6);
new GuideChapter(this, "paxel", entryTools, chPaxel, new PageTextOnly(this, 1), new PageCrafting(this, 2, rec.makeShapedOre(chPaxel, "ggg", "grg", "gr ", 'g', chPaxelGem, 'r', toolsEntryRod)).setNoText());
// Pickaxes
ItemStack chPickaxeGem = EnumGem.getRandom().getItemSuper();
ItemStack chPickaxe = makeTool(ModItems.pickaxe, toolsEntryRod, chPickaxeGem, 3);
new GuideChapter(this, "pickaxe", entryTools, chPickaxe, new PageTextOnly(this, 1), new PageCrafting(this, 2, rec.makeShapedOre(chPickaxe, "ggg", " r ", " r ", 'g', chPickaxeGem, 'r', toolsEntryRod)).setNoText());
// Scepters
ItemStack chScepterGem = EnumGem.getRandom().getItemSuper();
ItemStack chScepter = makeTool(ModItems.scepter, toolsEntryRod, chScepterGem, 5);
new GuideChapter(this, "scepter", entryTools, chScepter, new PageTextOnly(this, 1), new PageCrafting(this, 2, rec.makeShapedOre(chScepter, " g ", "grg", "grg", 'g', chScepterGem, 'r', toolsEntryRod)).setNoText(), new PageTextOnly(this, 3));
ItemStack chShieldGem = EnumGem.getRandom().getItemSuper();
ItemStack chShield = makeTool(ModItems.shield, toolsEntryRod, chShieldGem, 3);
new GuideChapter(this, "shield", entryTools, chShield, new PageTextOnly(this, 1), new PageCrafting(this, 2, rec.makeShapedOre(chShield, "gwg", "wrw", " g ", 'g', chShieldGem, 'r', toolsEntryRod, 'w', "plankWood")).setNoText());
// Shovels
ItemStack chShovelGem = EnumGem.getRandom().getItemSuper();
ItemStack chShovel = makeTool(ModItems.shovel, toolsEntryRod, chShovelGem, 1);
new GuideChapter(this, "shovel", entryTools, chShovel, new PageTextOnly(this, 1), new PageCrafting(this, 2, rec.makeShapedOre(chShovel, "g", "r", "r", 'g', chShovelGem, 'r', toolsEntryRod)).setNoText());
// Sickles
ItemStack chSickleGem = EnumGem.getRandom().getItemSuper();
ItemStack chSickle = makeTool(ModItems.sickle, toolsEntryRod, chSickleGem, 3);
new GuideChapter(this, "sickle", entryTools, chSickle, new PageTextOnly(this, 1), new PageCrafting(this, 2, rec.makeShapedOre(chSickle, " g", "gg", "r ", 'g', chSickleGem, 'r', toolsEntryRod)).setNoText());
// Swords
ItemStack chSwordGem = EnumGem.getRandom().getItemSuper();
ItemStack chSword = makeTool(ModItems.sword, toolsEntryRod, chSwordGem, 2);
new GuideChapter(this, "sword", entryTools, chSword, new PageTextOnly(this, 1), new PageCrafting(this, 2, rec.makeShapedOre(chSword, "g", "g", "r", 'g', chSwordGem, 'r', toolsEntryRod)).setNoText());
// Tomahawks
ItemStack chTomahawkGem = EnumGem.getRandom().getItemSuper();
ItemStack chTomahawk = makeTool(ModItems.tomahawk, toolsEntryRod, chTomahawkGem, 4);
new GuideChapter(this, "tomahawk", entryTools, chTomahawk, new PageTextOnly(this, 1), new PageCrafting(this, 2, rec.makeShapedOre(chTomahawk, "ggg", "gr ", " r ", 'g', chTomahawkGem, 'r', toolsEntryRod)).setNoText());
// Armor
ItemStack chHelmetGem = EnumGem.getRandom().getItemSuper();
ItemStack chHelmet = ModItems.gemHelmet.constructArmor(EnumMaterialTier.SUPER, chHelmetGem);
ItemStack chHelmetFrame = ModItems.armorFrame.getFrameForArmorPiece(ModItems.gemHelmet, EnumMaterialTier.SUPER);
ArmorHelper.setOriginalOwner(chHelmet, TOOL_OWNER_NAME);
new GuideChapter(this, "armor", entryTools, chHelmet, -10, new PageTextOnly(this, 1), new PageCrafting(this, 2, ModItems.craftingMaterial.recipeLatticeMundane).setNoText(), new PageCrafting(this, 3, ModItems.craftingMaterial.recipeLatticeRegular).setNoText(), new PageCrafting(this, 4, ModItems.craftingMaterial.recipeLatticeSuper).setNoText(), new PageCrafting(this, 5, rec.makeShaped(chHelmetFrame, "lll", "l l", 'l', ModItems.craftingMaterial.armorLatticeSuper)), new PageCrafting(this, 6, rec.makeShapedOre(chHelmet, " g ", "gfg", " g ", 'g', chHelmetGem, 'f', chHelmetFrame)));
// Blocks
// Ores
new GuideChapter(this, "ores", entryBlocks, new ItemStack(ModBlocks.gemOre, 1, SilentGems.random.nextInt(16)), 10, new PageTextOnly(this, 1), new PageOreSpawn(this, 2, GemsConfig.WORLD_GEN_GEMS), new PageOreSpawn(this, 3, GemsConfig.WORLD_GEN_GEMS_DARK), new PageOreSpawn(this, 4, GemsConfig.WORLD_GEN_CHAOS), new PageFurnace(this, 5, ModItems.craftingMaterial.chaosEssence), new PageOreSpawn(this, 6, GemsConfig.WORLD_GEN_ENDER), new PageFurnace(this, 7, ModItems.craftingMaterial.enderEssence)).setImportant();
// Chaos Altar
new GuideChapter(this, "chaosAltar", entryBlocks, new ItemStack(ModBlocks.chaosAltar), new PageCrafting(this, 1, ModBlocks.chaosAltar.recipe), new PageTextOnly(this, 2), new PageTextOnly(this, 3), new PageTextOnly(this, 4));
// Chaos Flower Pot
new GuideChapter(this, "chaosFlowerPot", entryBlocks, new ItemStack(ModBlocks.chaosFlowerPot), new PageCrafting(this, 1, ModBlocks.chaosFlowerPot.recipe), new PageTextOnly(this, 2));
// Chaos Node
new GuideChapter(this, "chaosNode", entryBlocks, new ItemStack(ModBlocks.chaosNode), new PagePicture(this, 1, new ResourceLocation(SilentGems.MODID, "textures/guide/chaosnode.png"), 125), new PageTextOnly(this, 2));
// Chaos Pylons
new GuideChapter(this, "chaosPylon", entryBlocks, new ItemStack(ModBlocks.chaosPylon), new PageTextOnly(this, 1), new PageTextOnly(this, 2));
// Fluffy Blocks
new GuideChapter(this, "fluffyBlocks", entryBlocks, new ItemStack(ModBlocks.fluffyBlock), new PageCrafting(this, 1, rec.makeShaped(new ItemStack(ModBlocks.fluffyBlock), "ff", "ff", 'f', ModItems.craftingMaterial.fluffyFabric)), new PageTextOnly(this, 2));
// Glow Rose
new GuideChapter(this, "glowRose", entryBlocks, new ItemStack(ModBlocks.glowRose), new PageTextOnly(this, 1));
// Material Grader
new GuideChapter(this, "materialGrader", entryBlocks, new ItemStack(ModBlocks.materialGrader), new PageTextOnly(this, 1));
// Decorative Gem Blocks
new GuideChapter(this, "gemDecoBlocks", entryBlocks, new ItemStack(ModBlocks.gemBrickCoated, 1, SilentGems.random.nextInt(16)), -10, new PageTextOnly(this, 1));
// Items
// Crafting Materials
List<IGuidePage> pages = Lists.newArrayList();
pages.add(new PageTextOnly(this, 1));
for (String str : ItemCrafting.SORTED_NAMES) {
ItemStack stack = ModItems.craftingMaterial.getStack(str);
IRecipe recipe = ModItems.craftingMaterial.guideRecipeMap.get(stack.getItemDamage());
if (stack.isItemEqual(ModItems.craftingMaterial.chaosEssence) || stack.isItemEqual(ModItems.craftingMaterial.enderEssence) || stack.isItemEqual(ModItems.craftingMaterial.chaosIron))
pages.add(new PageFurnace(this, 100 + stack.getItemDamage(), stack));
else if (recipe != null)
pages.add(new PageCrafting(this, 100 + stack.getItemDamage(), recipe));
else
pages.add(new PageTextOnly(this, 100 + stack.getItemDamage()));
}
new GuideChapter(this, "craftingMaterial", entryItems, ModItems.craftingMaterial.chaosEssence, pages.toArray(new IGuidePage[pages.size()]));
// Chaos Gems
ItemStack chChaosGem = new ItemStack(ModItems.chaosGem, 1, EnumGem.getRandom().ordinal());
ModItems.chaosGem.receiveCharge(chChaosGem, ModItems.chaosGem.getMaxCharge(chChaosGem), false);
ItemStack chChaosGemWithBuffs = StackHelper.safeCopy(chChaosGem);
ItemStack chChaosGemRuneStrength = new ItemStack(ModItems.chaosRune);
ModItems.chaosRune.setBuff(chChaosGemRuneStrength, ChaosBuff.STRENGTH);
ItemStack chChaosGemRuneResistance = new ItemStack(ModItems.chaosRune);
ModItems.chaosRune.setBuff(chChaosGemRuneResistance, ChaosBuff.RESISTANCE);
ModItems.chaosGem.addBuff(chChaosGemWithBuffs, ChaosBuff.STRENGTH);
ModItems.chaosGem.addBuff(chChaosGemWithBuffs, ChaosBuff.STRENGTH);
ModItems.chaosGem.addBuff(chChaosGemWithBuffs, ChaosBuff.RESISTANCE);
ModItems.chaosGem.addBuff(chChaosGemWithBuffs, ChaosBuff.RESISTANCE);
new GuideChapter(this, "chaosGem", entryItems, chChaosGem, new PageTextOnly(this, 1), new PageCrafting(this, 2, rec.makeShapeless(chChaosGemWithBuffs, chChaosGem, chChaosGemRuneStrength, chChaosGemRuneStrength, chChaosGemRuneResistance, chChaosGemRuneResistance)), new PageTextOnly(this, 3));
// Chaos Orbs
ItemStack chChaosOrb = new ItemStack(ModItems.chaosOrb, 1, ItemChaosOrb.Type.SUPREME.ordinal());
ModItems.chaosOrb.receiveCharge(chChaosOrb, ModItems.chaosOrb.getMaxCharge(chChaosOrb), false);
new GuideChapter(this, "chaosOrb", entryItems, chChaosOrb, new PageTextOnly(this, 1), new PageTextOnly(this, 2));
// Drawing Compass
ItemStack chDrawingCompass = new ItemStack(ModItems.drawingCompass);
new GuideChapter(this, "drawingCompass", entryItems, chDrawingCompass, new PageTextOnly(this, 1), new PageTextOnly(this, 2));
// Enchantment Tokens
ItemStack chEnchantmentToken = new ItemStack(ModItems.enchantmentToken, 1, ItemEnchantmentToken.BLANK_META);
ItemStack tokenSharpness = ModItems.enchantmentToken.constructToken(Enchantments.SHARPNESS);
ItemStack chEnchantmentTokenPickaxe = ToolRandomizer.INSTANCE.randomize(new ItemStack(ModItems.pickaxe), 0.75f);
ItemStack chEnchantmentTokenPickaxeEnchanted = StackHelper.safeCopy(chEnchantmentTokenPickaxe);
ItemStack tokenUnbreaking = ModItems.enchantmentToken.constructToken(Enchantments.UNBREAKING);
ItemStack tokenFortune = ModItems.enchantmentToken.constructToken(Enchantments.FORTUNE);
for (int i = 0; i < 3; ++i) {
ModItems.enchantmentToken.applyTokenToTool(tokenFortune, chEnchantmentTokenPickaxeEnchanted);
ModItems.enchantmentToken.applyTokenToTool(tokenUnbreaking, chEnchantmentTokenPickaxeEnchanted);
}
new GuideChapter(this, "enchantmentToken", entryItems, chEnchantmentToken, new PageTextOnly(this, 1), new PageTextOnly(this, 2), new PageCrafting(this, 3, rec.makeShapedOre(new ItemStack(ModItems.enchantmentToken, 12, ItemEnchantmentToken.BLANK_META), "ggg", "lcl", "ggg", 'g', "ingotGold", 'l', "gemLapis", 'c', "gemChaos")), new PageCrafting(this, 4, rec.makeShapedOre(tokenSharpness, "r r", "fbf", "fff", 'r', "gemRuby", 'f', Items.FLINT, 'b', chEnchantmentToken)), new PageTextOnly(this, 5), new PageCrafting(this, 6, rec.makeShapeless(chEnchantmentTokenPickaxeEnchanted, chEnchantmentTokenPickaxe, tokenUnbreaking, tokenUnbreaking, tokenUnbreaking, tokenFortune, tokenFortune, tokenFortune)));
// Fluffy Puffs
new GuideChapter(this, "fluffyPuff", entryItems, new ItemStack(ModItems.fluffyPuff), new PageTextOnly(this, 1));
// Gems
EnumGem chGem = EnumGem.getRandom();
ItemStack craftedShards = StackHelper.setCount(StackHelper.safeCopy(chGem.getShard()), 9);
new GuideChapter(this, "gem", entryItems, chGem.getItem(), new PageTextOnly(this, 1), new PageCrafting(this, 2, rec.makeShapelessOre(craftedShards, chGem.getItem())), new PageCrafting(this, 3, rec.makeShapedOre(chGem.getItemSuper(), "cgc", "cdc", "cgc", 'c', ModItems.craftingMaterial.chaosEssence, 'g', chGem.getItem(), 'd', "dustGlowstone")));
// Holding Gem
ItemStack chHoldingGem = ModItems.holdingGem.construct(EnumGem.getRandom());
ItemStack chHoldingGemIcon = StackHelper.safeCopy(chHoldingGem);
chHoldingGemIcon.setItemDamage(0);
ItemStack chHoldingGemSet = StackHelper.safeCopy(chHoldingGem);
ModItems.holdingGem.setBlockPlaced(chHoldingGemSet, Blocks.COBBLESTONE.getDefaultState());
chHoldingGemSet.setItemDamage(chHoldingGemSet.getMaxDamage() - 1);
new GuideChapter(this, "holdingGem", entryItems, chHoldingGemIcon, new PageTextOnly(this, 1), new PageCrafting(this, 2, rec.makeShapeless(chHoldingGemSet, chHoldingGem, new ItemStack(Blocks.COBBLESTONE))), new PageTextOnly(this, 3));
// Tip upgrades
ItemStack chTipUpgrade = new ItemStack(ModItems.tipUpgrade, 1, 2);
pages = Lists.newArrayList();
pages.add(new PageTextOnly(this, 1));
pages.add(new PageTextOnly(this, 2));
pages.add(new PageCrafting(this, 3, rec.makeShapelessOre(ModItems.craftingMaterial.upgradeBase, Items.FLINT, Items.FLINT, "stickWood", "plankWood")));
for (IRecipe recipe : ItemTipUpgrade.RECIPES) {
pages.add(new PageCrafting(this, 0, recipe).setNoText());
}
new GuideChapter(this, "tipUpgrade", entryItems, chTipUpgrade, pages.toArray(new IGuidePage[pages.size()]));
// Torch Bandolier
ItemStack chTorchBandolier = new ItemStack(ModItems.torchBandolier);
new GuideChapter(this, "torchBandolier", entryItems, chTorchBandolier, new PageTextOnly(this, 1), new PageTextOnly(this, 2));
/**
*****************
* Souls and Skills
******************
*/
// Important Notice
new GuideChapter(this, "soulsImportant", entrySouls, new ItemStack(Items.DIAMOND), new PageTextOnly(this, 1)).setImportant();
// Tool Souls
new GuideChapter(this, "toolSoul", entrySouls, new ItemStack(ModItems.toolSoul), new PageTextOnly(this, 1), new PageCrafting(this, 2, rec.makeShaped(new ItemStack(ModItems.toolSoul), " s ", "sds", " s ", 's', ModItems.soulGem, 'd', ModItems.craftingMaterial.soulShell)));
// Soul Skills (includes a page for each skill!)
pages = new ArrayList<>();
pages.add(new PageTextOnly(this, 1));
pages.add(new PageTextOnly(this, 2));
for (SoulSkill skill : SoulSkill.getSkillList()) {
pages.add(new PageSoulSkill(this, skill));
}
new GuideChapter(this, "soulSkills", entrySouls, new ItemStack(ModItems.skillOrb), pages.toArray(new IGuidePage[pages.size()]));
// Enchantments
// Gravity
new GuideChapter(this, "enchantmentGravity", entryEnchantments, ModItems.enchantmentToken.constructToken(ModEnchantments.gravity), new PageTextOnly(this, 1));
// Ice Aspect
new GuideChapter(this, "enchantmentIceAspect", entryEnchantments, ModItems.enchantmentToken.constructToken(ModEnchantments.iceAspect), new PageTextOnly(this, 1));
// Life Steal
new GuideChapter(this, "enchantmentLifeSteal", entryEnchantments, ModItems.enchantmentToken.constructToken(ModEnchantments.lifeSteal), new PageTextOnly(this, 1), new PageTextOnly(this, 2));
// Lightning Aspect
new GuideChapter(this, "enchantmentLightningAspect", entryEnchantments, ModItems.enchantmentToken.constructToken(ModEnchantments.lightningAspect), new PageTextOnly(this, 1));
// Magic Damage (Concentration)
new GuideChapter(this, "enchantmentMagicDamage", entryEnchantments, ModItems.enchantmentToken.constructToken(ModEnchantments.magicDamage), new PageTextOnly(this, 1));
if (entryDebug != null) {
// Tool test
new GuideChapter(this, "toolTest", entryDebug, ModItems.craftingMaterial.ironPotato, new PageDebugTool(this, 1), new PageDebugTool(this, 2));
}
// @formatter:on
}
use of net.silentchaos512.lib.registry.RecipeMaker in project SilentGems by SilentChaos512.
the class ModRecipes method registerAll.
@Override
public void registerAll(SRegistry reg) {
RecipeMaker recipes = reg.recipes;
// Chaos Essence creation.
SilentGemsAPI.addAltarRecipe(ModItems.craftingMaterial.chaosEssence, ModItems.craftingMaterial.getStack(Names.CHAOS_ESSENCE_SHARD, 4), 240000, new ItemStack(Items.DIAMOND));
// Ender Essence creation.
// SilentGemsAPI.addAltarRecipe(ModItems.craftingMaterial.enderEssence,
// ModItems.craftingMaterial.getStack(Names.ENDER_ESSENCE_SHARD, 4), 240000,
// ModItems.craftingMaterial.enderSlimeBall);
// Light <--> Dark gem conversion.
ItemStack slimeBall = new ItemStack(Items.SLIME_BALL);
ItemStack magmaCream = new ItemStack(Items.MAGMA_CREAM);
ItemStack enderSlime = ModItems.craftingMaterial.enderSlimeBall;
for (int i = 0; i < 16; ++i) {
EnumGem classic = EnumGem.values()[i];
EnumGem dark = EnumGem.values()[i + 16];
EnumGem light = EnumGem.values()[i + 32];
ItemStack classicShards = new ItemStack(ModItems.gemShard, 6, classic.ordinal());
ItemStack darkShards = new ItemStack(ModItems.gemShard, 6, dark.ordinal());
ItemStack lightShards = new ItemStack(ModItems.gemShard, 6, light.ordinal());
SilentGemsAPI.addAltarRecipe(darkShards, classic.getItem(), 80000, magmaCream);
SilentGemsAPI.addAltarRecipe(classicShards, dark.getItem(), 80000, slimeBall);
SilentGemsAPI.addAltarRecipe(lightShards, classic.getItem(), 80000, enderSlime);
SilentGemsAPI.addAltarRecipe(classicShards, light.getItem(), 80000, slimeBall);
}
// @formatter:off
// Axe
recipes.addCustomRecipe("multipart_axe", new RecipeMixedMaterialItem(null, ModItems.axe, "hh", "hr", " r"));
// Bow
recipes.addCustomRecipe("multipart_bow_mundane", new RecipeMixedMaterialItem(MUNDANE, ModItems.bow, "rhs", "h s", "rhs", 's', Items.STRING));
recipes.addCustomRecipe("multipart_bow_regular", new RecipeMixedMaterialItem(REGULAR, ModItems.bow, "rhs", "h s", "rhs", 's', Items.STRING));
recipes.addCustomRecipe("multipart_bow_super", new RecipeMixedMaterialItem(SUPER, ModItems.bow, "rhs", "h s", "rhs", 's', ModItems.craftingMaterial.gildedString));
// Dagger
recipes.addCustomRecipe("multipart_dagger", new RecipeMixedMaterialItem(null, ModItems.dagger, "h", "r"));
// Hoe
recipes.addCustomRecipe("multipart_hoe", new RecipeMixedMaterialItem(null, ModItems.hoe, "hh", " r", " r"));
// Katana
recipes.addCustomRecipe("multipart_katana", new RecipeMixedMaterialItem(null, ModItems.katana, "hh", "h ", "r "));
// Machete
recipes.addCustomRecipe("multipart_machete", new RecipeMixedMaterialItem(null, ModItems.machete, " hh", " h ", "r "));
// Paxel
recipes.addCustomRecipe("multipart_paxel", new RecipeMixedMaterialItem(null, ModItems.paxel, "hhh", "hrh", "hr "));
// Pickaxe
recipes.addCustomRecipe("multipart_pickaxe", new RecipeMixedMaterialItem(null, ModItems.pickaxe, "hhh", " r ", " r "));
// Scepter
recipes.addCustomRecipe("multipart_scepter", new RecipeMixedMaterialItem(null, ModItems.scepter, " h ", "hrh", "hrh"));
// Shield
recipes.addCustomRecipe("multipart_shield", new RecipeMixedMaterialItem(null, ModItems.shield, "hwh", "wrw", " h ", 'w', "plankWood"));
// Shovel
recipes.addCustomRecipe("multipart_shovel", new RecipeMixedMaterialItem(null, ModItems.shovel, "h", "r", "r"));
// Sickle
recipes.addCustomRecipe("multipart_sickle", new RecipeMixedMaterialItem(null, ModItems.sickle, " h", "hh", "r "));
// Sword
recipes.addCustomRecipe("multipart_sword", new RecipeMixedMaterialItem(null, ModItems.sword, "h", "h", "r"));
// Tomahawk
recipes.addCustomRecipe("multipart_tomahawk", new RecipeMixedMaterialItem(null, ModItems.tomahawk, "hhh", "hr ", " r "));
// Helmet
recipes.addCustomRecipe("multipart_helmet", new RecipeMixedMaterialItem(null, ModItems.gemHelmet, " h ", "hfh", " h "));
// Chestplate
recipes.addCustomRecipe("multipart_chestplate", new RecipeMixedMaterialItem(null, ModItems.gemChestplate, " h ", "hfh", " h "));
// Leggings
recipes.addCustomRecipe("multipart_leggings", new RecipeMixedMaterialItem(null, ModItems.gemLeggings, " h ", "hfh", " h "));
// Boots
recipes.addCustomRecipe("multipart_boots", new RecipeMixedMaterialItem(null, ModItems.gemBoots, " h ", "hfh", " h "));
// @formatter:on
recipes.addCustomRecipe("decorate_tool", new RecipeDecorateTool());
recipes.addCustomRecipe("decorate_armor", new RecipeDecorateArmor());
recipes.addCustomRecipe("apply_enchantment_token", new RecipeApplyEnchantmentToken());
recipes.addCustomRecipe("chaos_gem_upgrade", new RecipeChaosGemUpgrade());
recipes.addCustomRecipe("name_plate_use", new RecipeNamePlate());
recipes.addCustomRecipe("holding_gem_set_block", new RecipeHoldingGemSetBlock());
if (ADD_SOUL_RECIPES) {
recipes.addCustomRecipe("craft_tool_soul", new RecipeToolSoul());
recipes.addCustomRecipe("apply_tool_soul", new RecipeApplyToolSoul());
}
}
use of net.silentchaos512.lib.registry.RecipeMaker in project SilentGems by SilentChaos512.
the class BlockGemBrick method addRecipes.
@Override
public void addRecipes(RecipeMaker recipes) {
ItemStack bricks = new ItemStack(Blocks.STONEBRICK, 1, OreDictionary.WILDCARD_VALUE);
for (int i = 0; i < 16; ++i) {
EnumGem gem = getGem(i);
recipes.addSurroundOre(blockName + i, new ItemStack(this, 8, i), coated ? gem.getItemOreName() : gem.getShardOreName(), bricks);
}
}
use of net.silentchaos512.lib.registry.RecipeMaker in project SilentGems by SilentChaos512.
the class ItemReturnHome method addRecipes.
@Override
public void addRecipes(RecipeMaker recipes) {
for (EnumGem gem : EnumGem.values()) {
ItemStack result = new ItemStack(this, 1, gem.ordinal());
recipes.addShapedOre("return_home_" + gem.name(), result, " s ", "sgs", "ici", 's', ModItems.craftingMaterial.gildedString, 'g', gem.getItemOreName(), 'i', "ingotGold", 'c', new ItemStack(ModItems.chaosOrb, 1, ItemChaosOrb.Type.FRAGILE.ordinal()));
}
}
use of net.silentchaos512.lib.registry.RecipeMaker in project SilentGems by SilentChaos512.
the class ItemGem method addRecipes.
@Override
public void addRecipes(RecipeMaker recipes) {
String centerItem = GemsConfigHC.HARD_SUPER_GEMS ? "gemEnderEssence" : "dustGlowstone";
for (EnumGem gem : EnumGem.values()) {
// Supercharged gems
recipes.addShapedOre("gem_super_" + gem.name(), gem.getItemSuper(), "cgc", "cdc", "cgc", 'g', gem.getItem(), 'd', centerItem, 'c', "gemChaos");
// Gems <--> shards
recipes.addCompression("gem_" + gem.name(), gem.getShard(), gem.getItem(), 9);
ItemStack shards = gem.getShard();
StackHelper.setCount(shards, 9);
recipes.addShapelessOre("gem_shard_" + gem.name() + "_oredict", shards, gem.getItemOreName());
}
}
Aggregations