Enigmatica 6 - E6 - 1.16.5

Enigmatica 6 - E6 - 1.16.5

1M Downloads

The `powah:energizing` recipes do not need their energy costs as a string

Quezler opened this issue ยท 3 comments

commented

Describe your suggestion

Currently working on a computercraft script to automate the orbs so i dug up my recently generated lists of all exports, and i noticed the recipes by powah themselves do not pass their energy costs as a string, whilst we do, not really important. ๐Ÿ™ƒ

Why would you like this added/changed?

return {
  ['powah:energizing/ender_core'] = {
    ingredients = {
      {
        item = 'botania:ender_eye_block',
      },
      {
        item = 'powah:dielectric_casing',
      },
      {
        type = 'forge:nbt',
        item = 'pneumaticcraft:spawner_core',
        nbt = '{"pneumaticcraft:SpawnerCoreStats":{"minecraft:enderman":100}}',
      },
    },
    energy = '20000000',
    result = {
      item = 'powah:ender_core',
      count = 1,
    },
    id = 'powah:energizing/ender_core',
    type = 'powah:energizing',
  },
  ['powah:energizing/charged_snowball'] = {
    type = 'powah:energizing',
    ingredients = {
      {
        item = 'minecraft:snowball',
      },
    },
    energy = 500000,
    result = {
      item = 'powah:charged_snowball',
    },
  },
  ['rftoolsbase:infused_diamond'] = {
    ingredients = {
      {
        tag = 'forge:storage_blocks/dimensional',
      },
      {
        tag = 'forge:gems/diamond',
      },
      {
        item = 'integrateddynamics:crystalized_menril_block',
      },
    },
    energy = '9000000',
    result = {
      item = 'rftoolsbase:infused_diamond',
      count = 1,
    },
    id = 'rftoolsbase:infused_diamond',
    type = 'powah:energizing',
  },
  ['powah:energizing/blazing_crystal'] = {
    ingredients = {
      {
        item = 'ars_nouveau:blaze_fiber',
      },
      {
        item = 'resourcefulbees:blaze_honeycomb',
      },
    },
    energy = '120000',
    result = {
      item = 'powah:crystal_blazing',
      count = 1,
    },
    id = 'powah:energizing/blazing_crystal',
    type = 'powah:energizing',
  },
  ['rftoolsbase:infused_enderpearl'] = {
    ingredients = {
      {
        tag = 'forge:storage_blocks/dimensional',
      },
      {
        tag = 'forge:gems/ender',
      },
      {
        item = 'integrateddynamics:crystalized_chorus_block',
      },
    },
    energy = '18000000',
    result = {
      item = 'rftoolsbase:infused_enderpearl',
      count = 1,
    },
    id = 'rftoolsbase:infused_enderpearl',
    type = 'powah:energizing',
  },
  ['powah:energizing/spirited_crystal'] = {
    ingredients = {
      {
        item = 'atum:osiris_godshard',
      },
      {
        tag = 'forge:dusts/uranium',
      },
    },
    energy = '1000000',
    result = {
      item = 'powah:crystal_spirited',
      count = 1,
    },
    id = 'powah:energizing/spirited_crystal',
    type = 'powah:energizing',
  },
  ['powah:energizing/energized_steel'] = {
    ingredients = {
      {
        tag = 'forge:ingots/froststeel',
      },
      {
        tag = 'forge:ingots/electrum',
      },
    },
    energy = '10000',
    result = {
      item = 'powah:steel_energized',
      count = 2,
    },
    id = 'powah:energizing/energized_steel',
    type = 'powah:energizing',
  },
  ['powah:energizing/dry_ice'] = {
    type = 'powah:energizing',
    ingredients = {
      {
        item = 'minecraft:blue_ice',
      },
      {
        item = 'minecraft:blue_ice',
      },
    },
    energy = 10000,
    result = {
      item = 'powah:dry_ice',
    },
  },
  ['xnet:antenna_dish'] = {
    ingredients = {
      {
        tag = 'forge:plates/enderium',
      },
      {
        tag = 'forge:ingots/netherite',
      },
      {
        tag = 'forge:storage_blocks/iron_osmium',
      },
      {
        tag = 'forge:storage_blocks/iron_osmium',
      },
    },
    energy = '1000000',
    result = {
      item = 'xnet:antenna_dish',
      count = 1,
    },
    id = 'xnet:antenna_dish',
    type = 'powah:energizing',
  },
  ['powah:energizing/niotic_crystal'] = {
    ingredients = {
      {
        item = 'astralsorcery:resonating_gem',
      },
      {
        tag = 'forge:dusts/starmetal',
      },
    },
    energy = '300000',
    result = {
      item = 'powah:crystal_niotic',
      count = 1,
    },
    id = 'powah:energizing/niotic_crystal',
    type = 'powah:energizing',
  },
  ['xnet:redstoneproxy_update'] = {
    ingredients = {
      {
        item = 'xnet:redstone_proxy',
      },
    },
    energy = '100000',
    result = {
      item = 'xnet:redstone_proxy_upd',
      count = 1,
    },
    id = 'xnet:redstoneproxy_update',
    type = 'powah:energizing',
  },
  ['xnet:redstone_proxy'] = {
    ingredients = {
      {
        item = 'thermal:energy_cell_frame',
      },
      {
        tag = 'forge:storage_blocks/redstone',
      },
    },
    energy = '250000',
    result = {
      item = 'xnet:redstone_proxy',
      count = 1,
    },
    id = 'xnet:redstone_proxy',
    type = 'powah:energizing',
  },
  ['rftoolspower:power_core2'] = {
    ingredients = {
      {
        item = 'rftoolsbase:machine_base',
      },
      {
        item = 'powah:capacitor_blazing',
      },
      {
        item = 'powah:capacitor_blazing',
      },
      {
        item = 'powah:capacitor_blazing',
      },
      {
        item = 'powah:capacitor_blazing',
      },
    },
    energy = '500000',
    result = {
      item = 'rftoolspower:power_core2',
      count = 1,
    },
    id = 'rftoolspower:power_core2',
    type = 'powah:energizing',
  },
  ['rftoolspower:power_core3'] = {
    ingredients = {
      {
        item = 'rftoolsbase:machine_base',
      },
      {
        item = 'powah:capacitor_nitro',
      },
      {
        item = 'powah:capacitor_nitro',
      },
      {
        item = 'powah:capacitor_nitro',
      },
      {
        item = 'powah:capacitor_nitro',
      },
    },
    energy = '10000000',
    result = {
      item = 'rftoolspower:power_core3',
      count = 1,
    },
    id = 'rftoolspower:power_core3',
    type = 'powah:energizing',
  },
  ['mekanism:teleportation_core'] = {
    ingredients = {
      {
        tag = 'mekanism:alloys/atomic',
      },
      {
        item = 'rftoolsbase:infused_diamond',
      },
      {
        item = 'fluxnetworks:flux_core',
      },
      {
        item = 'rftoolsbase:infused_diamond',
      },
      {
        tag = 'mekanism:alloys/atomic',
      },
    },
    energy = '1000000000',
    result = {
      item = 'mekanism:teleportation_core',
      count = 2,
    },
    id = 'mekanism:teleportation_core',
    type = 'powah:energizing',
  },
  ['powah:energizing/nitro_crystal'] = {
    ingredients = {
      {
        item = 'minecraft:nether_star',
      },
      {
        item = 'bloodmagic:weakbloodshard',
      },
      {
        item = 'bloodmagic:weakbloodshard',
      },
      {
        tag = 'forge:storage_blocks/blazing',
      },
    },
    energy = '20000000',
    result = {
      item = 'powah:crystal_nitro',
      count = 16,
    },
    id = 'powah:energizing/nitro_crystal',
    type = 'powah:energizing',
  },
  ['extrastorage:raw_neural_processor'] = {
    ingredients = {
      {
        item = 'ars_nouveau:wixie_charm',
      },
      {
        item = 'refinedstorage:raw_advanced_processor',
      },
      {
        item = 'refinedstorage:raw_advanced_processor',
      },
      {
        item = 'refinedstorage:raw_advanced_processor',
      },
    },
    energy = '3000000',
    result = {
      item = 'extrastorage:raw_neural_processor',
      count = 3,
    },
    id = 'extrastorage:raw_neural_processor',
    type = 'powah:energizing',
  },
  ['enigmatica:expert/powah/energizing/redstone_proxy_upd'] = {
    ingredients = {
      {
        item = 'xnet:redstone_proxy_upd',
      },
    },
    energy = '100000',
    result = {
      item = 'xnet:redstone_proxy',
      count = 1,
    },
    id = 'enigmatica:expert/powah/energizing/redstone_proxy_upd',
    type = 'powah:energizing',
  },
  ['enigmatica:expert/powah/energizing/energized_steel_block'] = {
    ingredients = {
      {
        tag = 'forge:storage_blocks/froststeel',
      },
      {
        tag = 'forge:storage_blocks/electrum',
      },
    },
    energy = '100000',
    result = {
      item = 'powah:energized_steel_block',
      count = 2,
    },
    id = 'enigmatica:expert/powah/energizing/energized_steel_block',
    type = 'powah:energizing',
  },
  ['enigmatica:expert/powah/energizing/uraninite'] = {
    ingredients = {
      {
        tag = 'forge:ingots/uranium',
      },
      {
        tag = 'forge:ingots/uranium',
      },
      {
        tag = 'forge:dusts/sulfur',
      },
      {
        tag = 'forge:dusts/fluorite',
      },
    },
    energy = '10000',
    result = {
      item = 'powah:uraninite',
      count = 2,
    },
    id = 'enigmatica:expert/powah/energizing/uraninite',
    type = 'powah:energizing',
  },
  ['enigmatica:expert/powah/energizing/blazing_rod'] = {
    ingredients = {
      {
        item = 'minecraft:blaze_rod',
      },
    },
    energy = '10000000',
    result = {
      type = 'forge:nbt',
      item = 'rftoolspower:blazing_rod',
      count = 1,
      nbt = '{duration:5000.0f,time:0.0f,quality:200000.0f}',
    },
    id = 'enigmatica:expert/powah/energizing/blazing_rod',
    type = 'powah:energizing',
  },
  ['enigmatica:base/pneumaticcraft/thermo_plant/magmatic_cell'] = {
    ingredients = {
      {
        item = 'mekanism:energy_tablet',
      },
      {
        item = 'powah:capacitor_blazing',
      },
      {
        item = 'powah:capacitor_blazing',
      },
    },
    energy = '250000',
    result = {
      item = 'tetra:magmatic_cell',
      count = 1,
    },
    id = 'enigmatica:base/pneumaticcraft/thermo_plant/magmatic_cell',
    type = 'powah:energizing',
  },
commented

Could you perhaps PR in this change? ๐Ÿ˜„

commented

i was busy playing at the time, i'll edit them manually if you label it as accepted :3

commented

Already in here fixin stuff and this was a quick change.