Skip to content
Sokratis Fotkatzikis edited this page Nov 14, 2017 · 3 revisions

Welcome to the ArmorPlus developing integrations wiki!

Getting Started

Firstly you will need to download ArmorPlus' latest version from CurseForge/

Then you will need to place armorplus inside /libs/ and you will need to run gradlew setupDecompileWorkspace

Integrations

You can add recipes to the 4 benches in armorplus

  • Tier 1 - Workbench (3x3)
  • Tier 2 - High-Tech Bench (5x5)
  • Tier 3 - Ulti-Tech Bench (7x7)
  • Tier 4 - Champion Bench (9x9)

You can register recipes using recipe registries such as:

  • WorkbenchRegistry for the Workbench
  • HighTechBenchRegistry for the High-Tech Bench
  • UltiTechBenchRegistry for the Ulti-Tech Bench
  • ChampionBenchRegistry for the Champion Bench

Examples

        WorkbenchRegistry.addRecipe(new ItemStack(Blocks.COAL_BLOCK), 
        "CCC",
        "CCC",
        "CCC", 
        'C', Items.COAL);