Avaritia:Reforged

Avaritia:Reforged

45.5k Downloads

title


Avaritia Reforged is a Minecraft mod made for Minecraft Forge

Supported Versions CurseForge Download License

English | 简体中文

📕Introduction:

  • This mod adds all from Avaritia.
  • This mod is unofficial and have bugs!

✏️Authors:

  • Programmer: cnlimiter Asek3 MikhailTapio

🔒License:

📌Download official:

❗Attention:

  • You  DEFINITELY CAN  add the mod to your modpack.
  • Recipe viewing is supported via JEI.
  • You can add singularity by using json!
  • You can add recipes by CraftTweaker!
  • You can add recipes by KubeJs!

🔎Develop:

CraftTweaker:

mods.avaritia.CompressionCrafting.addRecipe("name",input, inputCount, timeRequierd);
mods.avaritia.CompressionCrafting.remove(output);
mods.avaritia.ExtremeTableCrafting.addShaped("name",output, ingredients);
mods.avaritia.ExtremeTableCrafting.addShapeless("name",output, ingredients);
mods.avaritia.ExtremeTableCrafting.remove(output);

KubeJs:

//ExtremeCraft
event.custom({
    type: 'avaritia:shaped_extreme_craft',//Shaped Extreme Craft,Shapeless is avaritia:shapeless_extreme_craft
    pattern: [
        "       II",
        "      III",
        "     III ",
        "    III  ",
        " C III   ",
        "  CII    ",
        "  NC     ",
        " N  C    ",
        "X        "
    ],
    key: {
        C: [
            Ingredient.of('avaritia:crystal_matrix_ingot').toJson()
        ],
        I: [
            Ingredient.of('avaritia:infinity_ingot').toJson()
        ],
        N: [
            Ingredient.of('avaritia:neutron_ingot').toJson()
        ],
        X: [
            Ingredient.of('avaritia:infinity_catalyst').toJson()
        ]
    },
    result: [
        Ingredient.of('avaritia:infinity_sword').toJson()
    ]
})
//Compressor
event.custom({
    type: 'avaritia:compressor',//Compressor Recipe
    materialCount: 1000,
    timeRequired: 240,
    ingredients: [
        Ingredient.of('#forge:ingots/bronze').toJson()
    ],
    result: [
        Ingredient.of('avaritia:bronze_singularity').toJson()
    ]
})

InfinityCatalyst:

{
  "type": "avaritia:infinity_catalyst_craft",//Infinity Catalyst recipe type
  "category": "misc",
  "ingredients": [
    {
      "item": "minecraft:emerald_block"
    },
    {
      "item": "avaritia:crystal_matrix_ingot"
    },
    {
      "item": "avaritia:neutron_ingot"
    },
    {
      "item": "avaritia:cosmic_meatballs"
    },
    {
      "item": "avaritia:ultimate_stew"
    },
    {
      "item": "avaritia:endest_pearl"
    },
    {
      "item": "avaritia:record_fragment"
    }
  ],
  "result": {
    "item": "avaritia:infinity_catalyst"//Fixed products
  }
}