Skip to content

Instantly share code, notes, and snippets.

@indygwyn
Last active February 4, 2026 04:55
Show Gist options
  • Select an option

  • Save indygwyn/565e82e01acec85ac195acf3e622aedb to your computer and use it in GitHub Desktop.

Select an option

Save indygwyn/565e82e01acec85ac195acf3e622aedb to your computer and use it in GitHub Desktop.
Super Factory Manager Draconic Fusion
name "Draconic Fusion Crafting"
every tick do
-- Power
input fe:: from Cube bottom side
output fe:: to injector
end
every 20 ticks do
-- Extraction
input from core bottom side
output to pp
forget
-- Draconic Relay Crystal
if buffer has ge 4 wyvern_relay_crystal and
buffer has ge 4 diamond and
buffer has ge 4 wyvern_energy_core and
buffer has ge 1 wyvern_core and
core has eq 0 then
input 4 wyvern_relay_crystal from buffer
output retain 4 wyvern_relay_crystal to core
input 4 diamond, 4 wyvern_energy_core, 1 wyvern_core from buffer
output 1 diamond to each injector
output 1 wyvern_energy_core to each injector
output 1 wyvern_core to each injector
-- Awakened Draconium
else if buffer has ge 4 draconium_block and
buffer has ge 6 draconium_core and
buffer has ge 1 dragon_heart and
core has eq 0 then
input 4 draconium_block from buffer
output retain 4 draconium_block to core
input 6 draconium_core, 1 dragon_heart from buffer
output 1 draconium_core to each injector
output 1 dragon_heart to each injector
-- Wyvern Capacitor
else if buffer has ge 1 wyvern_core and
buffer has ge 4 draconium_ingot and
buffer has ge 1 wyvern_energy_core and
core has eq 0 then
input 1 wyvern_core from buffer
output retain 1 wyvern_core to core
input 4 draconium_ingot, 4 wyvern_energy_core from buffer
output 1 draconium_ingot to each injector
output 1 wyvern_energy_core to each injector
-- Awakened core
else if buffer has ge 1 nether_star and
buffer has ge 4 awakened_draconium_ingot and
buffer has ge 4 wyvern_core and
core has eq 0 then
input 1 nether_star from buffer
output retain 1 nether_star to core
input 4 awakened_draconium_ingot, 4 wyvern_core from buffer
output 1 awakened_draconium_ingot to each injector
output 1 wyvern_core to each injector
-- Chaotic core
else if buffer has ge 5 large_chaos_frag and
buffer has ge 4 awakened_draconium_ingot and
buffer has ge 4 awakened_core and
core has eq 0 then
input 1 large_chaos_frag from buffer
output retain 1 large_chaos_frag to core
input 4 large_chaos_frag, 4 awakened_draconium_ingot, 4 awakened_core from buffer
output 1 awakened_draconium_ingot to each injector
output 1 awakened_core to each injector
output 1 large_chaos_frag to each injector
-- Chaotic Capacitor
else if buffer has ge 1 draconic_capacitor and
buffer has ge 4 awakened_draconium_ingot and
buffer has ge 3 chaotic_energy_core and
buffer has ge 1 chaotic_core and
core has eq 0 then
input 1 draconic_capacitor from buffer
output retain 1 draconic_capacitor to core
input 4 awakened_draconium_ingot, 3 chaotic_energy_core,
1 chaotic_core from buffer
output 4 awakened_draconium_ingot to each injector
output 3 chaotic_energy_core to each injector
output 1 chaotic_core to each injector
-- Awakened Capacitor
else if buffer has ge 1 wyvern_capacitor and
buffer has ge 4 awakened_draconium_ingot and
buffer has ge 3 draconic_energy_core and
buffer has ge 1 awakened_core and
core has eq 0 then
input 1 wyvern_capacitor from buffer
output retain 1 wyvern_capacitor to core
input 4 awakened_draconium_ingot, 3 draconic_energy_core,
1 awakened_core from buffer
output 4 awakened_draconium_ingot to each injector
output 3 draconic_energy_core to each injector
output 1 awakened_core to each injector
-- Chaos Chicken
else if buffer has ge 1 c_awakenddraconium and
buffer has ge 4 awakened_draconium_ingot and
buffer has ge 4 awakened_core and
buffer has ge 4 large_chaos_frag and
core has eq 0 then
input 1 c_awakeneddraconium from buffer
output retain 1 c_awakeneddraconium to core
input 4 awakened_draconium_ingot, 4 awakened_core,
4 large_chaos_frag from buffer
output to each injector
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment