├── README.md ├── bundles └── bundle_vi.properties ├── content ├── blocks │ ├── crafter │ │ ├── ammo-factory.hjson │ │ ├── refinery.hjson │ │ └── thicc-forge.hjson │ ├── defensive │ │ ├── area-accel.hjson │ │ └── smol-projector.hjson │ ├── distribution │ │ ├── not-a-router.hjson │ │ ├── silic-conveyor.hjson │ │ └── tungsten-bridge.hjson │ ├── drills │ │ ├── sulfur-drill.hjson │ │ ├── thicc-waterex.hjson │ │ ├── tungsten-drill.hjson │ │ └── water-drill.hjson │ ├── environment │ │ ├── blue.hjson │ │ ├── deca.hjson │ │ ├── deep-dirty-water.hjson │ │ ├── deep-sulfuric-acid-floor.hjson │ │ ├── dirt-water.hjson │ │ ├── dirty-water-floor.hjson │ │ ├── green.hjson │ │ ├── ore-iron.hjson │ │ ├── ore-tungsten.hjson │ │ ├── sulfur-floor.hjson │ │ ├── sulfuric-acid-floor.hjson │ │ ├── water-mud-floor.hjson │ │ ├── white-sand-wall.hjson │ │ └── whitesand.hjson │ ├── liquids │ │ ├── liquid-vault.hjson │ │ ├── mini-tank.hjson │ │ └── piston-pump.hjson │ ├── logistic │ │ └── announcement.hjson │ ├── payload │ │ ├── payload-belt.hjson │ │ ├── small-block-forge.hjson │ │ ├── small-loader.hjson │ │ └── small-unloader.hjson │ ├── power │ │ ├── beacon.hjson │ │ ├── big-thorium-reactor.hjson │ │ ├── heat-gen-big.hjson │ │ ├── heat-generator.hjson │ │ ├── huge-battery.hjson │ │ ├── liquid-burner.hjson │ │ ├── magnetic-coil.hjson │ │ ├── rtg-a.hjson │ │ ├── smol-liquir-bun.hjson │ │ ├── steam-pressure-generator.hjson │ │ └── thicc-reactor.hjson │ ├── production │ │ ├── acid-sulfuric-mixer.hjson │ │ ├── battery-machine.hjson │ │ ├── big-cryo.hjson │ │ ├── deca-refinery.hjson │ │ ├── filterer.hjson │ │ ├── meta-kilnii.hjson │ │ ├── phase-constructor.hjson │ │ ├── quartz-refinery-a.hjson │ │ ├── quartz-refinery.hjson │ │ ├── silic-glass-forge.hjson │ │ ├── silic-glass-smelter.hjson │ │ ├── steel-forge.hjson │ │ ├── steel-smelter.hjson │ │ ├── sulfur-extractor.hjson │ │ └── sulfuric-cap.hjson │ ├── storage │ │ ├── core-omega.hjson │ │ └── crate.hjson │ ├── turrets │ │ ├── broken-fuse.hjson │ │ ├── crack.hjson │ │ ├── current.hjson │ │ ├── double-dence.hjson │ │ ├── electro.hjson │ │ ├── flame-thrower-a.hjson │ │ ├── ordnance.hjson │ │ ├── paradox.hjson │ │ ├── react.hjson │ │ ├── recovered-fuse.hjson │ │ ├── salve.hjson │ │ ├── sprayer.hjson │ │ └── steam.hjson │ ├── units │ │ ├── drone-factory.hjson │ │ ├── upgrader-reconstructor-mkii.hjson │ │ └── upgrader-reconstructor.hjson │ └── walls │ │ ├── deca-wall.hjson │ │ ├── steel-wall-large.hjson │ │ ├── steel-wall.hjson │ │ ├── thicc-deca-wall.hjson │ │ ├── tungsten-wall-large.hjson │ │ └── tungsten-wall.hjson ├── items │ ├── alum.hjson │ ├── battery.hjson │ ├── deca.hjson │ ├── fixed-deca.hjson │ ├── iron.hjson │ ├── pyra-ammo.hjson │ ├── quartz.hjson │ ├── refined-scrap.hjson │ ├── silic-glass.hjson │ ├── standard-ammo.hjson │ ├── steel-ammo.hjson │ ├── steel.hjson │ ├── sulfur.hjson │ ├── sulfuric-capsule.hjson │ ├── tungsten.hjson │ └── watse-metal.hjson ├── liquids │ ├── acid-sulfuric.hjson │ └── dirty-water.hjson ├── status │ ├── acid-sulfuric-melting.hjson │ ├── electrocuted.hjson │ └── healing.hjson ├── units │ ├── air │ │ ├── copter-a.hjson │ │ ├── copter-b.hjson │ │ ├── copter-c.hjson │ │ ├── copter-d.hjson │ │ ├── drone.hjson │ │ ├── electron-a.hjson │ │ ├── electron-b.hjson │ │ ├── electron.hjson │ │ ├── gamma-nt.hjson │ │ ├── repairer.hjson │ │ ├── поли.hjson │ │ └── ᛗᛖᚷᚨ.hjson │ ├── attacker │ │ ├── daybreak.hjson │ │ ├── flame.hjson │ │ └── rissa.hjson │ └── supporter │ │ ├── advanced-miner.hjson │ │ ├── bendn-le-grand.hjson │ │ └── quin.hjson └── weather │ └── acid-rain.hjson ├── icon.png ├── mod.hjson ├── scripts ├── blocks │ ├── ammo-lib.js │ ├── heat-generator.js │ ├── multicrafter │ │ ├── ammo-factory.js │ │ └── thicc-forge.js │ ├── phase.js │ ├── refinery.js │ ├── sulfur.js │ └── turrets │ │ └── test.js ├── event │ └── collecting.js ├── main.js ├── multi-lib.js └── units │ └── drone.js ├── sounds └── sulfuric-react.ogg └── sprites ├── blocks ├── crafters │ ├── ammo-factory.png │ ├── refinery-rotator.png │ ├── refinery-top.png │ ├── refinery.png │ ├── thicc-forge-top.png │ └── thicc-forge.png ├── defensive │ ├── area-accel-liquid.png │ ├── area-accel-top.png │ ├── area-accel.png │ ├── smol-projector-full.png │ ├── smol-projector-team.png │ ├── smol-projector-top.png │ └── smol-projector.png ├── distribution │ ├── not-a-router.png │ ├── silic-conveyor-0.png │ ├── silic-conveyor-1.png │ ├── silic-conveyor-2.png │ ├── silic-conveyor-edge.png │ ├── silic-conveyor-icon.png │ ├── silic-conveyor-stack.png │ ├── silic-conveyor.png │ ├── tungsten-bridge-arrow.png │ ├── tungsten-bridge-bridge.png │ ├── tungsten-bridge-end.png │ └── tungsten-bridge.png ├── drills │ ├── sulfur-drill-item.png │ ├── sulfur-drill-rotator.png │ ├── sulfur-drill-top.png │ ├── sulfur-drill.png │ ├── thicc-waterex-icon.png │ ├── thicc-waterex-liquid.png │ ├── thicc-waterex-rotator.png │ ├── thicc-waterex-top.png │ ├── thicc-waterex.png │ ├── tungsten-drill-item.png │ ├── tungsten-drill-rotator.png │ ├── tungsten-drill-top.png │ ├── tungsten-drill.png │ ├── water-drill-item.png │ ├── water-drill-rotator.png │ ├── water-drill-top.png │ └── water-drill.png ├── environment │ ├── alum-ore1.png │ ├── alum-ore2.png │ ├── alum-ore3.png │ ├── blue1.png │ ├── blue2.png │ ├── blue3.png │ ├── deca-ore.png │ ├── deca1.png │ ├── deca2.png │ ├── deca3.png │ ├── deep-dirty-water.png │ ├── deep-sulfuric-acid-floor.png │ ├── dirt-water.png │ ├── dirty-water-floor.png │ ├── green1.png │ ├── green2.png │ ├── green3.png │ ├── iron-icon.png │ ├── iron1.png │ ├── iron2.png │ ├── iron3.png │ ├── large-white-sand-wall.png │ ├── sulfur-floor1.png │ ├── sulfur-floor2.png │ ├── sulfur-floor3.png │ ├── sulfuric-acid-floor.png │ ├── tungsten-icon.png │ ├── tungsten1.png │ ├── tungsten2.png │ ├── tungsten3.png │ ├── water-mud-floor.png │ ├── white-sand-wall1.png │ ├── white-sand-wall2.png │ ├── whitesand1.png │ ├── whitesand2.png │ └── whitesand3.png ├── liquids │ ├── liquid-vault-bottom.png │ ├── liquid-vault-full.png │ ├── liquid-vault-liquid.png │ ├── liquid-vault-top.png │ ├── mini-tank-bottom.png │ ├── mini-tank-liquid.png │ ├── mini-tank-top.png │ ├── mini-tank.png │ ├── piston-pump-liquid.png │ ├── piston-pump-top.png │ └── piston-pump.png ├── logistic │ └── announcement.png ├── payload │ ├── payload-belt-edge.png │ ├── payload-belt-full.png │ ├── payload-belt-icon.png │ ├── payload-belt-top.png │ ├── payload-belt.png │ ├── small-block-forge-in.png │ ├── small-block-forge-out.png │ ├── small-block-forge.png │ ├── small-loader-in.png │ ├── small-loader-out.png │ ├── small-loader.png │ ├── small-unloader-in.png │ ├── small-unloader-out.png │ └── small-unloader.png ├── power │ ├── basic-other │ │ ├── steam-pressure-generator-bottom.png │ │ ├── steam-pressure-generator-plasma-0.png │ │ ├── steam-pressure-generator-plasma-1.png │ │ ├── steam-pressure-generator-plasma-2.png │ │ ├── steam-pressure-generator-plasma-3.png │ │ ├── steam-pressure-generator.png │ │ ├── sulfur-gen-heat.png │ │ ├── sulfur-gen-liquid.png │ │ ├── sulfur-gen-top.png │ │ └── sulfur-gen.png │ ├── beacon-top.png │ ├── beacon.png │ ├── burner │ │ ├── heat-gen-big-bottom.png │ │ ├── heat-gen-big-liquid.png │ │ ├── heat-gen-big-top.png │ │ ├── heat-gen-big.png │ │ ├── heat-generator-bottom.png │ │ ├── heat-generator-liquid.png │ │ ├── heat-generator-top.png │ │ ├── heat-generator.png │ │ ├── liquid-burner-bottom.png │ │ ├── liquid-burner-liquid.png │ │ ├── liquid-burner-top.png │ │ ├── liquid-burner.png │ │ ├── smol-liquir-bun-bottom.png │ │ ├── smol-liquir-bun-liquid.png │ │ ├── smol-liquir-bun-top.png │ │ └── smol-liquir-bun.png │ ├── fushion-reactor │ │ ├── thicc-reactor-bottom.png │ │ ├── thicc-reactor-full.png │ │ ├── thicc-reactor-plasma-1.png │ │ ├── thicc-reactor-plasma-2.png │ │ ├── thicc-reactor-plasma-3.png │ │ ├── thicc-reactor-plasma-4.png │ │ └── thicc-reactor.png │ ├── node-battery │ │ ├── huge-battery-top.png │ │ ├── huge-battery.png │ │ ├── magnetic-coil-rotator.png │ │ ├── magnetic-coil-top.png │ │ └── magnetic-coil.png │ └── reactor-rtg │ │ ├── big-thorium-reactor-lights.png │ │ ├── big-thorium-reactor-top.png │ │ ├── big-thorium-reactor.png │ │ ├── rtg-a-top.png │ │ └── rtg-a.png ├── production │ ├── acid-sulfuric-mixer-bottom.png │ ├── acid-sulfuric-mixer-liquid.png │ ├── acid-sulfuric-mixer-top.png │ ├── acid-sulfuric-mixer.png │ ├── battery-machine │ │ ├── battery-machine-icon.png │ │ ├── battery-machine-rotator.png │ │ ├── battery-machine-top.png │ │ └── battery-machine.png │ ├── big-cryo-bottom.png │ ├── big-cryo-liquid.png │ ├── big-cryo-top.png │ ├── big-cryo.png │ ├── explosive-mixer-rotator.png │ ├── explosive-mixer-top.png │ ├── explosive-mixer.png │ ├── filterer-full.png │ ├── filterer-liquid.png │ ├── filterer-rotator.png │ ├── filterer-top.png │ ├── filterer.png │ ├── meta-kilnii-top.png │ ├── meta-kilnii.png │ ├── phase-constructor-bar.png │ ├── phase-constructor-phase.png │ ├── phase-constructor-point.png │ ├── phase-constructor-top.png │ ├── phase-constructor.png │ ├── quartz-refinery-a-liquid.png │ ├── quartz-refinery-a-rotator.png │ ├── quartz-refinery-a-top.png │ ├── quartz-refinery-a.png │ ├── quartz-refinery-full.png │ ├── quartz-refinery-icon.png │ ├── quartz-refinery-liquid.png │ ├── quartz-refinery-rotator.png │ ├── quartz-refinery-top.png │ ├── quartz-refinery.png │ ├── refine-animation │ │ ├── deca-refinery-frame0.png │ │ ├── deca-refinery-frame1.png │ │ ├── deca-refinery-frame10.png │ │ ├── deca-refinery-frame11.png │ │ ├── deca-refinery-frame12.png │ │ ├── deca-refinery-frame13.png │ │ ├── deca-refinery-frame14.png │ │ ├── deca-refinery-frame15.png │ │ ├── deca-refinery-frame16.png │ │ ├── deca-refinery-frame2.png │ │ ├── deca-refinery-frame3.png │ │ ├── deca-refinery-frame4.png │ │ ├── deca-refinery-frame5.png │ │ ├── deca-refinery-frame6.png │ │ ├── deca-refinery-frame7.png │ │ ├── deca-refinery-frame8.png │ │ ├── deca-refinery-frame9.png │ │ ├── deca-refinery-icon.png │ │ ├── deca-refinery-liquid.png │ │ ├── deca-refinery-top.png │ │ └── deca-refinery.png │ ├── silic-glass-forge-icon.png │ ├── silic-glass-forge-top.png │ ├── silic-glass-forge.png │ ├── silic-glass-smelter-icon.png │ ├── silic-glass-smelter-top.png │ ├── silic-glass-smelter.png │ ├── steel-forge-top.png │ ├── steel-forge.png │ ├── steel-smelter-top.png │ ├── steel-smelter.png │ ├── sulfur-extractor-bottom.png │ ├── sulfur-extractor-liquid.png │ ├── sulfur-extractor-top.png │ ├── sulfur-extractor.png │ └── sulfuric-cap │ │ ├── sulfuric-cap-frame1.png │ │ ├── sulfuric-cap-frame10.png │ │ ├── sulfuric-cap-frame11.png │ │ ├── sulfuric-cap-frame12.png │ │ ├── sulfuric-cap-frame13.png │ │ ├── sulfuric-cap-frame2.png │ │ ├── sulfuric-cap-frame3.png │ │ ├── sulfuric-cap-frame4.png │ │ ├── sulfuric-cap-frame5.png │ │ ├── sulfuric-cap-frame6.png │ │ ├── sulfuric-cap-frame7.png │ │ ├── sulfuric-cap-frame8.png │ │ ├── sulfuric-cap-frame9.png │ │ ├── sulfuric-cap-liquid.png │ │ ├── sulfuric-cap-top.png │ │ └── sulfuric-cap.png ├── storage │ ├── core-omega-full.png │ ├── core-omega-team.png │ ├── core-omega.png │ ├── core-shard-ii-team.png │ ├── core-shard-ii.png │ ├── crate-icon.png │ ├── crate-team.png │ └── crate.png ├── turrets │ ├── broken-fuse.png │ ├── crack.png │ ├── current.png │ ├── double-dence.png │ ├── electro-heat.png │ ├── electro.png │ ├── flame-thrower-a-heat.png │ ├── flame-thrower-a.png │ ├── ordnance-heat.png │ ├── ordnance.png │ ├── paradox-laser-end.png │ ├── paradox-laser.png │ ├── paradox.png │ ├── react.png │ ├── recovered-fuse.png │ ├── salve-base.png │ ├── salve-heat.png │ ├── salve.png │ ├── sprayer-icon.png │ ├── sprayer-liquid.png │ ├── sprayer-top.png │ ├── sprayer.png │ ├── steam-liquid.png │ └── steam.png ├── units │ ├── drone-factory-top.png │ ├── drone-factory.png │ ├── small-block-forge-top.png │ ├── small-loader-top.png │ ├── small-unloader-top.png │ ├── upgrader-reconstructor-mkii-top.png │ ├── upgrader-reconstructor-mkii.png │ ├── upgrader-reconstructor-top.png │ └── upgrader-reconstructor.png └── walls │ ├── deca-wall.png │ ├── steel-wall-large.png │ ├── steel-wall.png │ ├── thicc-deca-wall.png │ ├── tungsten-wall-large.png │ └── tungsten-wall.png ├── githob ├── Industrial_banner.png ├── mod1.png └── mod2.png ├── items ├── alum.png ├── battery.png ├── deca.png ├── explosive.png ├── fixed-deca.png ├── iron.png ├── pyra-ammo.png ├── quartz.png ├── refined-scrap.png ├── silic-glass.png ├── standard-ammo.png ├── steel-ammo.png ├── steel.png ├── sulfur.png ├── sulfuric-capsule.png ├── tungsten.png ├── watse-metal.png └── what.png ├── liquids ├── acid-sulfuric.png └── dirty-water.png ├── shapes ├── arrow-trail.png ├── attack.png ├── bendn-le-grand-trail.png ├── copter-c-rocket.png ├── diamond.png ├── electron-trail.png ├── heal-small.png ├── missle-back.png ├── missle-raw-back.png ├── missle-raw.png ├── missle.png ├── point-trail.png ├── star.png ├── sulfur-cap-back.png ├── sulfur-cap.png └── widerail.png ├── status ├── acid-sulfuric-melting.png ├── electrocuted.png └── healing.png └── units ├── air ├── copter-a │ ├── copter-a-cell.png │ ├── copter-a-full.png │ ├── copter-a-rotator.png │ ├── copter-a-top.png │ ├── copter-a-weapon.png │ └── copter-a.png ├── copter-b │ ├── copter-b-cell.png │ ├── copter-b-full.png │ ├── copter-b-guna.png │ ├── copter-b-gunb.png │ ├── copter-b-rotator.png │ ├── copter-b-top.png │ └── copter-b.png ├── copter-c │ ├── copter-c-cell.png │ ├── copter-c-full.png │ ├── copter-c-gun.png │ ├── copter-c-rotator.png │ ├── copter-c-rotatorb.png │ ├── copter-c-top.png │ └── copter-c.png ├── copter-d │ ├── copter-d-big-gun.png │ ├── copter-d-blade-a.png │ ├── copter-d-blade.png │ ├── copter-d-cell.png │ ├── copter-d-full.png │ ├── copter-d-med-gun.png │ ├── copter-d-smol-gun-a.png │ ├── copter-d-smol-gun-b.png │ ├── copter-d-top.png │ ├── copter-d.png │ └── guns.png ├── core-ii-unit-cell.png ├── core-ii-unit.png ├── drone-cell.png ├── drone-rotor-outline.png ├── drone-rotor.png ├── drone.png ├── electron-cell.png ├── electron-full.png ├── electron.png ├── electrons │ ├── electron-a-cell.png │ ├── electron-a-full.png │ ├── electron-a.png │ ├── electron-b-emp.png │ ├── electron-b-full.png │ ├── electron-b.png │ ├── electron-c-b-e-a-n.png │ ├── electron-c-cell.png │ ├── electron-c-full.png │ ├── electron-c-h-gun.png │ ├── electron-c-lance.png │ ├── electron-c.png │ ├── electron-d-artillery.png │ ├── electron-d-cell.png │ ├── electron-d-full.png │ ├── electron-d-lance.png │ ├── electron-d-sapper.png │ └── electron-d.png ├── gamma-nt-cell.png ├── gamma-nt-full.png ├── gamma-nt.png ├── repairer-cell.png ├── repairer.png ├── поли │ ├── пистолет.png │ ├── поли-cell.png │ ├── поли-full.png │ ├── поли-небольшой-пистолет.png │ ├── поли-пистолет.png │ └── поли.png └── ᛗᛖᚷᚨ │ ├── ᚷᚢᚾᛋ.png │ ├── ᛗᛖᚷᚨ-cell.png │ ├── ᛗᛖᚷᚨ-full.png │ ├── ᛗᛖᚷᚨ-ᛋᛗᚨᛚᛚ-ᚷᚢᚾ.png │ ├── ᛗᛖᚷᚨ-ᛒᛁᚷ-ᚷᚢᚾ.png │ ├── ᛗᛖᚷᚨ-ᛗᛖᛞᛁᚢᛗ-ᚷᚢᚾ.png │ └── ᛗᛖᚷᚨ.png ├── attacker ├── daybreak-cell.png ├── daybreak.png ├── flame-cell.png ├── flame.png ├── rissa-cell.png └── rissa.png ├── supporter ├── advanced-miner-cell.png ├── advanced-miner-healer.png ├── advanced-miner.png ├── bendn-le-grand-cell.png ├── bendn-le-grand-full.png ├── bendn-le-grand.png ├── quin-cell.png └── quin.png └── weapons ├── bendn-le-grand-pistolet-qu'il-a-utilisé-pour-me-tuer.png ├── core-point-defense-mount.png ├── rissa-missiles-mount.png └── rissa-rail-gun.png /README.md: -------------------------------------------------------------------------------- 1 | ![image](https://github.com/EclipseTheOldOne/Project-Scrap/blob/main/sprites/githob/Industrial_banner.png?raw=true) 2 | # Project Scrap : A Mindustry mod. 3 | Well, its a *work in progress*. It currently adds a few miscellaneous items, units, and its own reconstructers. 4 |
Click on the releases tab to manually download, or download from the in-game mod browser. 5 |
It could be fun, ill leave the judgment of whether or not it is fun to you. If you find any issues, please open a issue. 6 |
Discord @https://discord.gg/JHu9grmxyK 7 |
achoo 8 |
Extension: EclipseTheOldOne/Industrial-Processing 9 |
Support Vietnamese 10 | # Helicopter! 11 | ![image](https://github.com/EclipseTheOldOne/Project-Scrap/blob/main/sprites/githob/mod1.png?raw=true) 12 | ![image](https://github.com/EclipseTheOldOne/Project-Scrap/blob/main/sprites/githob/mod2.png?raw=true) 13 | 14 | Lore: http://besser.tsoa.nyu.edu/howard/Anarchism/Unabom/manifesto2.html 15 | -------------------------------------------------------------------------------- /bundles/bundle_vi.properties: -------------------------------------------------------------------------------- 1 | block.industrial-acid-sulfuric-mixer.name = Máy Trộn Acid Sulfuric 2 | block.industrial-battery-machine.name = Nhà Máy Pin 3 | block.industrial-big-cryo.name = Máy Trộn Chất Làm Lạnh Lớn 4 | block.industrial-deca-refinery.name = Nhà Máy Xử Lí Deca 5 | block.industrial-filterer.name = Máy Lọc 6 | block.industrial-meta-kilnii.name = Lò Chì Thủy Tinh 7 | block.industrial-phase-constructor.name = Nhà Máy Vật Liệu Hóa Phase 8 | block.industrial-quartz-refinery-a.name = Nhà Máy Lọc Thạch Anh Lớn 9 | block.industrial-quartz-refinery.name = Nhà Máy Lọc Thạch Anh 10 | block.industrial-silic-glass-forge.name = Lò Luyện Kính Silic 11 | block.industrial-silic-glass-smelter.name = Lò Nung Kính Silic 12 | block.industrial-steel-forge.name = Lò Luyện Thép 13 | block.industrial-steel-smelter.name = Lò Nung Thép 14 | block.industrial-sulfur-extractor.name = Máy Chiết Xuất Lưu Huỳnh 15 | block.industrial-sulfuric-cap.name = Máy Đóng Chai Acid Sulfuric 16 | block.industrial-ammo-factory.name = Nhà Máy Đạn 17 | block.industrial-refinery.name = Nhà Máy Xử Lí Kim Loại Rác 18 | block.industrial-thicc-forge.name = Lò Luyện 19 | -------------------------------------------------------------------------------- /content/blocks/crafter/ammo-factory.hjson: -------------------------------------------------------------------------------- 1 | name: Ammo Assembler 2 | description: "Make ammo" 3 | size: 3 4 | itemCapacity: 40 5 | liquidCapacity: 50 6 | health: 750 7 | requirements: 8 | [ 9 | copper/350 10 | titanium/150 11 | tungsten/120 12 | steel/200 13 | graphite/90 14 | ] 15 | category: crafting -------------------------------------------------------------------------------- /content/blocks/crafter/refinery.hjson: -------------------------------------------------------------------------------- 1 | description: "Refine Scrap into a better, more durable metal" 2 | craftEffect: steam 3 | hasItems: true 4 | hasLiquids: true 5 | health: 550 6 | hasPower: true 7 | craftTime: 45 8 | size: 2 9 | name: Scrap Refinery 10 | consumes: 11 | { 12 | power: 1.5 13 | items: { 14 | items: [ 15 | scrap/3 16 | titanium/1 17 | ] 18 | } 19 | liquid: { 20 | liquid: water 21 | amount: 0.2 22 | } 23 | } 24 | category: crafting 25 | outputItem: refined-scrap/2 26 | requirements: 27 | [ 28 | titanium/90 29 | copper/55 30 | graphite/35 31 | ] 32 | -------------------------------------------------------------------------------- /content/blocks/crafter/thicc-forge.hjson: -------------------------------------------------------------------------------- 1 | name: Furnace 2 | description: "Make alloys" 3 | size: 4 4 | itemCapacity: 60 5 | liquidCapacity: 45 6 | health: 750 7 | requirements: 8 | [ 9 | copper/750 10 | lead/625 11 | surge-alloy/145 12 | titanium/150 13 | tungsten/120 14 | silicon/45 15 | silic-glass/250 16 | steel/450 17 | graphite/250 18 | ] 19 | category: crafting 20 | drawer: drawSmelter -------------------------------------------------------------------------------- /content/blocks/defensive/area-accel.hjson: -------------------------------------------------------------------------------- 1 | name: Area Accelerator 2 | description: "Overdrive a huge area, require large amount of phase and cryo fluid" 3 | health: 1250 4 | size: 4 5 | range: 420 6 | speedBoost: 3.5 7 | hasBoost: false 8 | useTime: 180 9 | drawer: 10 | { 11 | type: DrawLiquid 12 | } 13 | consumes: 14 | { 15 | power: 22 16 | items: 17 | { 18 | items: 19 | [ 20 | phase-fabric/2 21 | silicon/3 22 | ] 23 | } 24 | liquid: 25 | { 26 | liquid: cryofluid 27 | amount: 0.3 28 | } 29 | } 30 | research: overdrive-dome 31 | requirements: 32 | [ 33 | lead/550 34 | surge-alloy/250 35 | plastanium/150 36 | silicon/350 37 | graphite/150 38 | thorium/125 39 | ] -------------------------------------------------------------------------------- /content/blocks/defensive/smol-projector.hjson: -------------------------------------------------------------------------------- 1 | type: ForceProjector 2 | category: effect 3 | health: 200 4 | name: "Small Force Projector" 5 | size: 2 6 | phaseUseTime: 480 7 | consumes: 8 | { 9 | power: 1.7 10 | items: { 11 | items: 12 | [ 13 | silicon/2 14 | ] 15 | booster: true 16 | optional: true 17 | } 18 | } 19 | phaseRadiusBoost: 40 20 | phaseShieldBoost: 100 21 | radius: 70 22 | shieldHealth: 250 23 | requirements: 24 | [ 25 | copper/80 26 | silicon/30 27 | graphite/45 28 | ] 29 | cooldownNormal: 0.7 30 | cooldownLiquid: 1.1 31 | cooldownBrokenBase: 0.3 32 | details: hi -------------------------------------------------------------------------------- /content/blocks/distribution/not-a-router.hjson: -------------------------------------------------------------------------------- 1 | type: Router 2 | health: 60 3 | category: distribution 4 | research: router 5 | description: "Act like a router, but hold a small buffer amount, still clog tho" 6 | speed: 10 7 | requirements: 8 | [ 9 | iron/6 10 | copper/3 11 | ] 12 | itemCapacity: 20 13 | name: Buffer -------------------------------------------------------------------------------- /content/blocks/distribution/silic-conveyor.hjson: -------------------------------------------------------------------------------- 1 | type: StackConveyor 2 | health: 250 3 | description: "A very durable conveyor, large stack size, decent speed, absolutely amazing." 4 | name: Silica Conveyor 5 | size: 1 6 | requirements: 7 | [ 8 | tungsten/2 9 | steel/1 10 | silic-glass/1 11 | plastanium/3 12 | ] 13 | speed: 0.05 14 | itemCapacity: 35 15 | -------------------------------------------------------------------------------- /content/blocks/distribution/tungsten-bridge.hjson: -------------------------------------------------------------------------------- 1 | type: BufferedItemBridge 2 | desciption: "A bridge with longer range and have a decent buffer capacity" 3 | bufferCapacity: 15 4 | health: 120 5 | size: 1 6 | name: Tungsten Item Bridge 7 | requirements: 8 | [ 9 | tungsten/4 10 | steel/3 11 | ] 12 | range: 6 13 | transportTime: 120 14 | -------------------------------------------------------------------------------- /content/blocks/drills/sulfur-drill.hjson: -------------------------------------------------------------------------------- 1 | type: Drill 2 | hardnessDrillMultiplier: 30 3 | liquidBoostIntensity: 1 4 | tier: 4 5 | drillTime: 30 6 | size: 3 7 | health: 1250 8 | liquidCapacity: 70 9 | rotateSpeed: 1.3 10 | requirements: 11 | [ 12 | steel/220 13 | tungsten/170 14 | sulfuric-capsule/35 15 | plastanium/85 16 | silicon/125 17 | silic-glass/75 18 | ] 19 | name: Sunfuric Acid Drill 20 | consumes: 21 | { 22 | power: 1.5 23 | liquid: { 24 | liquid: acid-sulfuric 25 | amount: 0.3 26 | } 27 | } 28 | category: production -------------------------------------------------------------------------------- /content/blocks/drills/thicc-waterex.hjson: -------------------------------------------------------------------------------- 1 | type: SolidPump 2 | health: 1100 3 | requirements: 4 | [ 5 | silic-glass/250 6 | tungsten/350 7 | steel/180 8 | silicon/280 9 | plastanium/155 10 | ] 11 | rotateSpeed: 3.4 12 | description: "Using advanced compacted tech for faster extraction, consume lot of power" 13 | size: 4 14 | baseEfficiency: 1.5 15 | attribute: water 16 | name: Industrial Water Extractor 17 | pumpAmount: 1.2 18 | category: production 19 | liquidCapacity: 550 20 | consumes: 21 | { 22 | power: 12.5 23 | } -------------------------------------------------------------------------------- /content/blocks/drills/tungsten-drill.hjson: -------------------------------------------------------------------------------- 1 | type: Drill 2 | hardnessDrillMultiplier: 20 3 | liquidBoostIntensity: 1 4 | tier: 3 5 | description: "An acid drill, working by using acid sulfuric" 6 | drillTime: 45 7 | size: 3 8 | health: 550 9 | liquidCapacity: 70 10 | rotateSpeed: 0.3 11 | requirements: 12 | [ 13 | steel/120 14 | tungsten/50 15 | silicon/75 16 | metaglass/85 17 | ] 18 | name: Tungsten Drill 19 | consumes: 20 | { 21 | power: 0.5 22 | liquid: { 23 | liquid: acid-sulfuric 24 | amount: 0.1 25 | } 26 | } 27 | category: production -------------------------------------------------------------------------------- /content/blocks/drills/water-drill.hjson: -------------------------------------------------------------------------------- 1 | type: Drill 2 | hardnessDrillMultiplier: 30 3 | liquidBoostIntensity: 1 4 | tier: 2 5 | drillTime: 22.5 6 | description: "A fast drill, mine at extremely fast speed, but can only mine low ore" 7 | size: 2 8 | health: 550 9 | liquidCapacity: 70 10 | rotateSpeed: 2 11 | requirements: 12 | [ 13 | silicon/35 14 | lead/25 15 | copper/55 16 | graphite/15 17 | metaglass/25 18 | ] 19 | name: Hydro Drill 20 | consumes: 21 | { 22 | liquid: { 23 | liquid: water 24 | amount: 0.3 25 | } 26 | } 27 | category: production -------------------------------------------------------------------------------- /content/blocks/environment/blue.hjson: -------------------------------------------------------------------------------- 1 | type: Floor 2 | health: 1000 3 | name: blue-floor 4 | placeablePlayer: false 5 | hasShadow: false -------------------------------------------------------------------------------- /content/blocks/environment/deca.hjson: -------------------------------------------------------------------------------- 1 | type: OreBlock 2 | mapColor: 9c6d54 3 | itemDrop: deca 4 | name: Debris 5 | -------------------------------------------------------------------------------- /content/blocks/environment/deep-dirty-water.hjson: -------------------------------------------------------------------------------- 1 | speedMultiplier: 0.3 2 | variants: 0 3 | isLiquid: true 4 | type: Floor 5 | status: wet 6 | statusDuration: 240 7 | drownTime: 140 8 | liquidDrop: dirty-water 9 | liquidMultiplier: 1.5 10 | cacheLayer: water 11 | attributes: 12 | { 13 | dirt: 0.7 14 | } -------------------------------------------------------------------------------- /content/blocks/environment/deep-sulfuric-acid-floor.hjson: -------------------------------------------------------------------------------- 1 | speedMultiplier: 0.3 2 | variants: 0 3 | isLiquid: true 4 | type: Floor 5 | status: industrial-acid-sulfuric-melting 6 | statusDuration: 240 7 | liquidDrop: acid-sulfuric 8 | liquidMultiplier: 1.2 9 | cacheLayer: water 10 | damageTaken: 0.4 11 | walkSound: industrial-sulfuric-react 12 | drownUpdateEffect: smoke 13 | drownTime: 240 -------------------------------------------------------------------------------- /content/blocks/environment/dirt-water.hjson: -------------------------------------------------------------------------------- 1 | type: Floor 2 | variants: 0 3 | isLiquid: true 4 | liquidMultiplier: 1 5 | cacheLayer: water 6 | speedMultiplier: 0.3 7 | liquidDrop: dirty-water 8 | status: wet 9 | statusDuration: 240 10 | attributes: 11 | { 12 | dirt: 1 13 | } 14 | name: Shallow Muddy Water -------------------------------------------------------------------------------- /content/blocks/environment/dirty-water-floor.hjson: -------------------------------------------------------------------------------- 1 | speedMultiplier: 0.7 2 | variants: 0 3 | isLiquid: true 4 | type: Floor 5 | status: wet 6 | statusDuration: 240 7 | drownTime: 0 8 | liquidDrop: dirty-water 9 | liquidMultiplier: 1.5 10 | cacheLayer: water 11 | attributes: 12 | { 13 | dirt: 0.7 14 | } -------------------------------------------------------------------------------- /content/blocks/environment/green.hjson: -------------------------------------------------------------------------------- 1 | type: Floor 2 | health: 1000 3 | name: green-floor 4 | placeablePlayer: false 5 | hasShadow: false -------------------------------------------------------------------------------- /content/blocks/environment/ore-iron.hjson: -------------------------------------------------------------------------------- 1 | type: OreBlock 2 | mapColor: ab8580 3 | itemDrop: iron 4 | name: Iron Ore 5 | oreDefault: true -------------------------------------------------------------------------------- /content/blocks/environment/ore-tungsten.hjson: -------------------------------------------------------------------------------- 1 | type: OreBlock 2 | mapColor: 7ddba6 3 | itemDrop: tungsten 4 | name: Tungsten ore 5 | oreDefault: true -------------------------------------------------------------------------------- /content/blocks/environment/sulfur-floor.hjson: -------------------------------------------------------------------------------- 1 | type: OreBlock 2 | mapColor: ab8580 3 | itemDrop: industrial-sulfur 4 | name: Sulfur Rock 5 | playerUnmineable: true -------------------------------------------------------------------------------- /content/blocks/environment/sulfuric-acid-floor.hjson: -------------------------------------------------------------------------------- 1 | speedMultiplier: 0.7 2 | variants: 0 3 | isLiquid: true 4 | type: Floor 5 | status: industrial-acid-sulfuric-melting 6 | statusDuration: 240 7 | liquidDrop: acid-sulfuric 8 | liquidMultiplier: 1.2 9 | cacheLayer: water 10 | damageTaken: 0.3 11 | walkSound: industrial-sulfuric-react 12 | drownUpdateEffect: smoke 13 | shallow: true -------------------------------------------------------------------------------- /content/blocks/environment/water-mud-floor.hjson: -------------------------------------------------------------------------------- 1 | type: Floor 2 | variants: 0 3 | isLiquid: true 4 | liquidMultiplier: 1.5 5 | cacheLayer: water 6 | speedMultiplier: 0.3 7 | liquidDrop: dirty-water 8 | status: wet 9 | statusDuration: 240 10 | drownTime: 240 11 | attributes: 12 | { 13 | dirt: 1 14 | } 15 | name: Deep Muddy Water -------------------------------------------------------------------------------- /content/blocks/environment/white-sand-wall.hjson: -------------------------------------------------------------------------------- 1 | type: StaticWall 2 | variants: 2 3 | name: White Sand Wall 4 | mapColor: b8b0ab -------------------------------------------------------------------------------- /content/blocks/environment/whitesand.hjson: -------------------------------------------------------------------------------- 1 | type: Floor 2 | mapColor: b8b0ab 3 | itemDrop: sand 4 | name: White Sand 5 | attributes: 6 | { 7 | oil: 0.4 8 | } 9 | playerUnmineable: true -------------------------------------------------------------------------------- /content/blocks/liquids/liquid-vault.hjson: -------------------------------------------------------------------------------- 1 | type: LiquidRouter 2 | name: Liquid Container Tank 3 | description: "A huge liquid tank that can store a large amount of liquids" 4 | size: 4 5 | health: 5500 6 | liquidCapacity: 9500 7 | requirements: 8 | [ 9 | titanium/750 10 | tungsten/350 11 | steel/250 12 | silic-glass/150 13 | metaglass/55 14 | ] 15 | category: liquid 16 | buildCostMultiplier: 0.5 17 | -------------------------------------------------------------------------------- /content/blocks/liquids/mini-tank.hjson: -------------------------------------------------------------------------------- 1 | type: LiquidRouter 2 | name: Liquid Tank 3 | description: "a small liquid tank used for buffer" 4 | size: 1 5 | health: 120 6 | liquidCapacity: 120 7 | requirements: 8 | [ 9 | metaglass/12 10 | graphite/4 11 | ] 12 | category: liquid 13 | buildCostMultiplier: 1 14 | -------------------------------------------------------------------------------- /content/blocks/liquids/piston-pump.hjson: -------------------------------------------------------------------------------- 1 | name: Piston Pump 2 | desciption: "A cheap, faster than normal pump, but take up more space" 3 | requirements: 4 | [ 5 | copper/125 6 | lead/35 7 | scrap/75 8 | ] 9 | type: Pump 10 | size: 2 11 | pumpAmount: 0.3 12 | health: 50 13 | squareSprite: false -------------------------------------------------------------------------------- /content/blocks/logistic/announcement.hjson: -------------------------------------------------------------------------------- 1 | type: MessageBlock 2 | name: Announce 3 | description: "A bigger message that can contains a lot more text" 4 | requirements: 5 | [ 6 | graphite/25 7 | silicon/15 8 | ] 9 | maxTextLength: 550 10 | maxNewlines: 48 11 | size: 2 12 | health: 100 13 | category: logic 14 | -------------------------------------------------------------------------------- /content/blocks/payload/payload-belt.hjson: -------------------------------------------------------------------------------- 1 | type: PayloadConveyor 2 | moveTime: 70 3 | payloadLimit: 1 4 | category: units 5 | health: 50 6 | size: 1 7 | description: "a 1x1 payload conveyor" 8 | moveForce: 200 9 | name: Small Payload Belt 10 | requirements: 11 | [ 12 | copper/10 13 | lead/5 14 | graphite/5 15 | ] 16 | -------------------------------------------------------------------------------- /content/blocks/payload/small-block-forge.hjson: -------------------------------------------------------------------------------- 1 | type: BlockForge 2 | desciption: "A smaller block forge for early game" 3 | name: Small Block Forge 4 | size: 1 5 | payloadLimit: 1 6 | health: 130 7 | buildSpeed: 0.2 8 | maxBlockSize: 1 9 | requirements: 10 | [ 11 | copper/75 12 | lead/25 13 | titanium/20 14 | graphite/25 15 | silicon/15 16 | ] 17 | powerUse: 1 18 | maxBlockSize: 1 19 | consumesPower: true 20 | -------------------------------------------------------------------------------- /content/blocks/payload/small-loader.hjson: -------------------------------------------------------------------------------- 1 | type: BlockLoader 2 | desciption: "A smaller block loader for early game" 3 | name: Small Block Loader 4 | size: 1 5 | payloadLimit: 1 6 | health: 130 7 | requirements: 8 | [ 9 | copper/10 10 | lead/50 11 | graphite/35 12 | silicon/20 13 | ] 14 | powerUse: 1 15 | maxBlockSize: 1 16 | category: distribution 17 | consumesPower: true -------------------------------------------------------------------------------- /content/blocks/payload/small-unloader.hjson: -------------------------------------------------------------------------------- 1 | type: BlockUnloader 2 | desciption: "A smaller block unloader for early game" 3 | name: Small Block Unloader 4 | size: 1 5 | payloadLimit: 1 6 | health: 130 7 | requirements: 8 | [ 9 | copper/10 10 | lead/50 11 | graphite/35 12 | silicon/20 13 | ] 14 | powerUse: 1 15 | maxBlockSize: 1 16 | category: distribution 17 | consumesPower: true -------------------------------------------------------------------------------- /content/blocks/power/beacon.hjson: -------------------------------------------------------------------------------- 1 | type: LightBlock 2 | health: 350 3 | consumes: 4 | { 5 | power: 0.2 6 | } 7 | name: Beacon 8 | size: 2 9 | requirements: 10 | [ 11 | tungsten/35 12 | silicon/25 13 | titanium/10 14 | ] 15 | -------------------------------------------------------------------------------- /content/blocks/power/big-thorium-reactor.hjson: -------------------------------------------------------------------------------- 1 | /* 2 | type: NuclearReactor 3 | requirements: 4 | [ 5 | industrial-steel/275 6 | industrial-tungsten/125 7 | surge-alloy/75 8 | silicon/350 9 | graphite/250 10 | ] 11 | health: 2250 12 | size: 4 13 | */ -------------------------------------------------------------------------------- /content/blocks/power/heat-gen-big.hjson: -------------------------------------------------------------------------------- 1 | name: Large Liquid Heat Generator 2 | description: "A larger heat generator unit that can generate heat more effective" 3 | size: 3 4 | health: 950 5 | requirements: 6 | [ 7 | tungsten/90 8 | steel/75 9 | silic-glass/75 10 | silicon/60 11 | plastanium/55 12 | ] 13 | hasPower: true 14 | hasItems: false 15 | hasLiquids: true 16 | powerProduction: 22 17 | defaults: false 18 | minItemEfficiency: 10000 19 | maxLiquidGenerate: 0.7 20 | minLiquidEfficiency: 1 21 | randomlyExplode:false 22 | heatColor: ffffff00 23 | liquidCapacity: 120 24 | category: power 25 | -------------------------------------------------------------------------------- /content/blocks/power/heat-generator.hjson: -------------------------------------------------------------------------------- 1 | name: Liquid Heat Generator 2 | size: 2 3 | health: 550 4 | requirements: 5 | [ 6 | copper/75 7 | lead/35 8 | silicon/35 9 | graphite/25 10 | ] 11 | hasPower: true 12 | hasItems: false 13 | hasLiquids: true 14 | powerProduction: 5.5 15 | defaults:false 16 | minItemEfficiency: 1000 17 | maxLiquidGenerate: 0.3 18 | minLiquidEfficiency: 1 19 | randomlyExplode:false 20 | heatColor: ffffff00 21 | liquidCapacity: 50 22 | category: power 23 | -------------------------------------------------------------------------------- /content/blocks/power/huge-battery.hjson: -------------------------------------------------------------------------------- 1 | type: Battery 2 | health: 4200 3 | category: power 4 | consumes: 5 | { 6 | powerBuffered: 230000 7 | } 8 | size: 4 9 | requirements: 10 | [ 11 | tungsten/550 12 | lead/330 13 | steel/220 14 | titanium/150 15 | silicon/660 16 | ] 17 | name: Huge Battery 18 | description: "A huge battery, capable of storing a large amount of power" 19 | -------------------------------------------------------------------------------- /content/blocks/power/liquid-burner.hjson: -------------------------------------------------------------------------------- 1 | name: Liquid Burner Plant 2 | size: 3 3 | health: 1000 4 | requirements: 5 | [ 6 | plastanium/65 7 | silicon/75 8 | steel/125 9 | lead/35 10 | tungsten/25 11 | ] 12 | hasPower: true 13 | hasItems: false 14 | hasLiquids: true 15 | powerProduction: 11.5 16 | defaults:false 17 | minItemEfficiency: 1000 18 | maxLiquidGenerate: 0.25 19 | minLiquidEfficiency: 0.1 20 | randomlyExplode: false 21 | heatColor: ffffff00 22 | liquidCapacity: 250 23 | category: power 24 | -------------------------------------------------------------------------------- /content/blocks/power/magnetic-coil.hjson: -------------------------------------------------------------------------------- 1 | category: power 2 | type: PowerNode 3 | maxNodes: 250 4 | description: "A large coil that transfer power to nearby building" 5 | laserColor1: ffffff00 6 | laserColor2: ffffff00 7 | health: 750 8 | name: Magnetic Coil 9 | size: 3 10 | laserRange: 25 11 | research: surge-tower 12 | laserColor1: ffffffae 13 | laserColor2: fbd367ae 14 | requirements: 15 | [ 16 | lead/110 17 | tungsten/55 18 | surge-alloy/50 19 | steel/75 20 | silicon/120 21 | ] -------------------------------------------------------------------------------- /content/blocks/power/rtg-a.hjson: -------------------------------------------------------------------------------- 1 | type: DecayGenerator 2 | name: Large RTG generator 3 | desciption: "A bigger RTG generator, consume radioactive material to generate power. More effective than a RTG generator but consume a little more resource\nRequire extra water" 4 | size: 3 5 | category: power 6 | health: 1300 7 | requirements: 8 | [ 9 | silicon/140 10 | graphite/90 11 | plastanium/50 12 | phase-fabric/25 13 | surge-alloy/45 14 | ] 15 | powerProduction: 20.5 16 | itemDuration: 600 17 | consumes: { 18 | liquid: { 19 | liquid: water 20 | amount: 0.3 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /content/blocks/power/smol-liquir-bun.hjson: -------------------------------------------------------------------------------- 1 | name: Liquid Burner Unit 2 | size: 2 3 | health: 350 4 | description: "Burn liquid directly for power, a little inefficieny." 5 | requirements: 6 | [ 7 | silicon/25 8 | graphite/15 9 | lead/25 10 | copper/65 11 | ] 12 | hasPower: true 13 | hasItems: false 14 | hasLiquids: true 15 | powerProduction: 4.5 16 | defaults: false 17 | minItemEfficiency: 1000 18 | maxLiquidGenerate: 0.1 19 | minLiquidEfficiency: 0.1 20 | randomlyExplode: false 21 | heatColor: ffffff00 22 | liquidCapacity: 50 23 | category: power 24 | -------------------------------------------------------------------------------- /content/blocks/power/steam-pressure-generator.hjson: -------------------------------------------------------------------------------- 1 | type: ImpactReactor 2 | name: Steam Pressure Generator 3 | consumes: 4 | { 5 | power: 2 6 | items: { 7 | items: [ 8 | coal/4 9 | ] 10 | } 11 | liquid: { 12 | liquid: water 13 | amount: 0.8 14 | } 15 | } 16 | requirements: 17 | [ 18 | copper/350 19 | lead/145 20 | silicon/85 21 | graphite/75 22 | titanium/120 23 | plastanium/45 24 | ] 25 | category: power 26 | health: 1250 27 | itemDuration: 160 28 | liquidCapacity: 150 29 | itemCapacity: 30 30 | size: 3 31 | plasma1: a1a1a1ae 32 | plasma2: ffffffae 33 | powerProduction: 30 34 | hasLiquids: true -------------------------------------------------------------------------------- /content/blocks/power/thicc-reactor.hjson: -------------------------------------------------------------------------------- 1 | type: ImpactReactor 2 | name: Fushion Reactor 3 | description: "Generate lots of power" 4 | consumes: 5 | { 6 | power: 41 7 | items: { 8 | items: [ 9 | sulfuric-capsule/1 10 | ] 11 | } 12 | liquid: { 13 | liquid: water 14 | amount: 3 15 | } 16 | } 17 | requirements: 18 | [ 19 | tungsten/550 20 | thorium/350 21 | metaglass/150 22 | silic-glass/260 23 | steel/150 24 | plastanium/150 25 | fixed-deca/150 26 | ] 27 | category: power 28 | health: 9250 29 | itemDuration: 45 30 | liquidCapacity: 150 31 | itemCapacity: 30 32 | size: 4 33 | plasma1: db8960ae 34 | plasma2: cc612bae 35 | powerProduction: 160.33 36 | hasLiquids: true -------------------------------------------------------------------------------- /content/blocks/production/acid-sulfuric-mixer.hjson: -------------------------------------------------------------------------------- 1 | name: Acid Sulfuric Mixer 2 | details: "Hmm...yes, Chemistry" 3 | category: crafting 4 | size: 2 5 | liquidCapacity: 30 6 | hasLiquids: true 7 | requirements: 8 | [ 9 | tungsten/35 10 | plastanium/15 11 | titanium/25 12 | silicon/45 13 | steel/35 14 | ] 15 | consumes: 16 | { 17 | power: 2.2 18 | liquid: { 19 | liquid: water 20 | amount: 0.2 21 | } 22 | items: { 23 | items: [ 24 | sulfur/2 25 | ] 26 | } 27 | } 28 | craftTime: 10 29 | outputLiquid: acid-sulfuric/8 30 | -------------------------------------------------------------------------------- /content/blocks/production/battery-machine.hjson: -------------------------------------------------------------------------------- 1 | description: "Manufacture Battery Rapidly" 2 | hasItems: true 3 | hasLiquids: true 4 | health: 1200 5 | hasPower: true 6 | craftTime: 90 7 | liquidCapacity: 35 8 | itemCapacity: 15 9 | size: 2 10 | name: Battery Manufacturer 11 | consumes: 12 | { 13 | power: 20.5 14 | items: { 15 | items: [ 16 | steel/4 17 | alum/3 18 | ] 19 | } 20 | liquid: { 21 | liquid: acid-sulfuric 22 | amount: 0.3 23 | } 24 | } 25 | category: crafting 26 | outputItem: battery/3 27 | requirements: 28 | [ 29 | iron/75 30 | steel/95 31 | tungsten/25 32 | alum/45 33 | ] 34 | -------------------------------------------------------------------------------- /content/blocks/production/big-cryo.hjson: -------------------------------------------------------------------------------- 1 | type: LiquidConverter 2 | health: 1250 3 | size: 3 4 | description: "make a large amount of cryofluid" 5 | liquidCapacity: 100 6 | itemCapacity: 50 7 | consumes: 8 | { 9 | power: 10 10 | items: { 11 | items: [ 12 | titanium/3 13 | ] 14 | } 15 | liquid: { 16 | liquid: water 17 | amount: 0.8 18 | } 19 | } 20 | requirements: 21 | [ 22 | silic-glass/75 23 | silicon/150 24 | titanium/60 25 | tungsten/75 26 | steel/45 27 | ] 28 | name: Large Cryo Mixer 29 | research: cryofluid-mixer 30 | category: crafting 31 | outputLiquid: cryofluid/48 -------------------------------------------------------------------------------- /content/blocks/production/deca-refinery.hjson: -------------------------------------------------------------------------------- 1 | description: "Refine and press Debris into usable plate, consume a large amount of power and sulfuric acid" 2 | hasItems: true 3 | hasLiquids: true 4 | health: 2200 5 | hasPower: true 6 | craftTime: 90 7 | liquidCapacity: 55 8 | itemCapacity: 35 9 | size: 3 10 | name: Debris Refinery 11 | consumes: 12 | { 13 | power: 33.5 14 | items: { 15 | items: [ 16 | deca/3 17 | ] 18 | } 19 | liquid: { 20 | liquid: acid-sulfuric 21 | amount: 0.3 22 | } 23 | } 24 | category: crafting 25 | outputItem: fixed-deca/2 26 | requirements: 27 | [ 28 | tungsten/740 29 | steel/650 30 | silic-glass/250 31 | surge-alloy/150 32 | battery/110 33 | ] 34 | -------------------------------------------------------------------------------- /content/blocks/production/filterer.hjson: -------------------------------------------------------------------------------- 1 | type: GenericCrafter 2 | outputItem: scrap/2 3 | health: 150 4 | size: 2 5 | outputLiquid: water/9 6 | consumes: 7 | { 8 | power: 2.5 9 | liquid: { 10 | liquid: dirty-water 11 | amount: 0.3 12 | } 13 | } 14 | name: Filterer 15 | liquidCapacity: 50 16 | itemCapacity: 30 17 | craftTime: 30 18 | requirements: 19 | [ 20 | copper/25 21 | graphite/10 22 | lead/35 23 | ] 24 | drawer: drawRotator 25 | category: crafting -------------------------------------------------------------------------------- /content/blocks/production/meta-kilnii.hjson: -------------------------------------------------------------------------------- 1 | size: 3 2 | hasPower: true 3 | name: Metaglass Forge 4 | hasItems: true 5 | consumes: 6 | { 7 | power: 3.333333333333 8 | items: { 9 | items: [ 10 | lead/2 11 | sand/3 12 | ] 13 | } 14 | liquid: { 15 | liquid: water 16 | amount: 0.1 17 | } 18 | } 19 | craftEffect: 20 | { 21 | type: ParticleEffect 22 | region: industrial-diamond 23 | colorFrom: ffffff 24 | colorTo: ffffff 25 | particles: 12 26 | length: 20 27 | lifetime: 25 28 | } 29 | craftTime: 30 30 | baseEfficiency: 0.75 31 | maxBoost: 2.5 32 | outputItem: metaglass/3 33 | research: kiln 34 | requirements: 35 | [ 36 | lead/65 37 | graphite/40 38 | titanium/35 39 | metaglass/15 40 | ] 41 | category: crafting -------------------------------------------------------------------------------- /content/blocks/production/phase-constructor.hjson: -------------------------------------------------------------------------------- 1 | description: "a very expensive machine, take very long to make lot of phase fabric, need extra silicon" 2 | hasItems: true 3 | hasLiquids: true 4 | health: 2200 5 | hasPower: true 6 | craftTime: 480 7 | liquidCapacity: 55 8 | itemCapacity: 150 9 | size: 3 10 | name: Phase Materializer 11 | consumes: 12 | { 13 | power: 20.5 14 | items: { 15 | items: [ 16 | sand/100 17 | thorium/40 18 | silicon/12 19 | ] 20 | } 21 | } 22 | category: crafting 23 | outputItem: phase-fabric/18 24 | requirements: 25 | [ 26 | silicon/750 27 | lead/550 28 | tungsten/350 29 | steel/350 30 | surge-alloy/150 31 | phase-fabric/80 32 | silic-glass/330 33 | ] 34 | -------------------------------------------------------------------------------- /content/blocks/production/quartz-refinery-a.hjson: -------------------------------------------------------------------------------- 1 | description: "Refine large amount of sand into quartz, consume acid sulfuric instead of water" 2 | craftEffect: steam 3 | hasItems: true 4 | hasLiquids: true 5 | health: 2200 6 | hasPower: true 7 | craftTime: 90 8 | liquidCapacity: 55 9 | itemCapacity: 35 10 | size: 4 11 | name: Quartz Refinery 12 | consumes: 13 | { 14 | power: 20.5 15 | items: { 16 | items: [ 17 | sand/14 18 | ] 19 | } 20 | liquid: { 21 | liquid: acid-sulfuric 22 | amount: 0.2 23 | } 24 | } 25 | category: crafting 26 | outputItem: quartz/11 27 | requirements: 28 | [ 29 | tungsten/330 30 | steel/450 31 | silic-glass/250 32 | plastanium/250 33 | ] 34 | -------------------------------------------------------------------------------- /content/blocks/production/quartz-refinery.hjson: -------------------------------------------------------------------------------- 1 | description: "Filtering sand into quartz, require extra water" 2 | craftEffect: steam 3 | hasItems: true 4 | hasLiquids: true 5 | health: 550 6 | hasPower: true 7 | craftTime: 45 8 | liquidCapacity: 55 9 | itemCapacity: 35 10 | size: 3 11 | name: Quartz Filterer 12 | consumes: 13 | { 14 | power: 1.5 15 | items: { 16 | items: [ 17 | sand/8 18 | ] 19 | } 20 | liquid: { 21 | liquid: water 22 | amount: 0.4 23 | } 24 | } 25 | category: crafting 26 | outputItem: quartz/5 27 | requirements: 28 | [ 29 | tungsten/55 30 | steel/45 31 | titanium/25 32 | iron/65 33 | ] 34 | -------------------------------------------------------------------------------- /content/blocks/production/silic-glass-forge.hjson: -------------------------------------------------------------------------------- 1 | name: Silica Glass Forge 2 | requirements: 3 | [ 4 | tungsten/140 5 | steel/120 6 | plastanium/55 7 | silic-glass/75 8 | lead/85 9 | silicon/95 10 | ] 11 | health: 1050 12 | size: 3 13 | craftTime: 45 14 | description: "Consume a large amount of resource and power to make Silica Glass, Need extra slag to work" 15 | consumes: 16 | { 17 | power: 10.5 18 | items: { 19 | items: [ 20 | quartz/5 21 | silicon/2 22 | ] 23 | } 24 | liquid: { 25 | liquid: slag 26 | amount: 0.25 27 | } 28 | } 29 | category: crafting 30 | outputItem: silic-glass/5 31 | liquidCapacity: 30 32 | itemCapacity: 45 -------------------------------------------------------------------------------- /content/blocks/production/silic-glass-smelter.hjson: -------------------------------------------------------------------------------- 1 | name: Silic Glass Smelter 2 | size: 2 3 | health: 550 4 | description: "Smelt silicon with sand for silic glass" 5 | requirements: 6 | [ 7 | lead/25 8 | metaglass/35 9 | graphite/20 10 | ] 11 | craftTime: 30 12 | consumes: 13 | { 14 | power: 1.5 15 | items: { 16 | items: [ 17 | quartz/2 18 | silicon/1 19 | ] 20 | } 21 | } 22 | category: crafting 23 | outputItem: silic-glass/2 24 | -------------------------------------------------------------------------------- /content/blocks/production/steel-forge.hjson: -------------------------------------------------------------------------------- 1 | size: 3 2 | hasPower: true 3 | name: Steel Forge 4 | health: 1200 5 | hasItems: true 6 | consumes: 7 | { 8 | power: 11 9 | items: { 10 | items: [ 11 | coal/7 12 | iron/6 13 | pyratite/1 14 | ] 15 | } 16 | liquid: { 17 | liquid: water 18 | amount: 0.3 19 | } 20 | } 21 | craftEffect: 22 | { 23 | type: ParticleEffect 24 | region: industrial-diamond 25 | colorFrom: ffffff 26 | colorTo: ffffff 27 | particles: 12 28 | length: 20 29 | lifetime: 25 30 | } 31 | craftTime: 120 32 | baseEfficiency: 1 33 | maxBoost: 4.5 34 | outputItem: steel/6 35 | requirements: 36 | [ 37 | tungsten/45 38 | steel/35 39 | silicon/95 40 | metaglass/35 41 | plastanium/35 42 | ] 43 | category: crafting 44 | -------------------------------------------------------------------------------- /content/blocks/production/steel-smelter.hjson: -------------------------------------------------------------------------------- 1 | name: Steel Smelter 2 | size: 2 3 | health: 550 4 | description: "Smelt Iron and mix it with coal for Steel" 5 | requirements: 6 | [ 7 | copper/25 8 | lead/35 9 | graphite/20 10 | ] 11 | craftTime: 180 12 | consumes: 13 | { 14 | power: 2 15 | items: { 16 | items: [ 17 | iron/3 18 | coal/2 19 | ] 20 | } 21 | } 22 | category: crafting 23 | outputItem: steel/3 24 | -------------------------------------------------------------------------------- /content/blocks/production/sulfur-extractor.hjson: -------------------------------------------------------------------------------- 1 | name: Sulfur Extractor 2 | description: "Process oil to make sulfur" 3 | details: "Due to hjson limiting, i can't add water input to this thing" 4 | category: crafting 5 | size: 3 6 | liquidCapacity: 50 7 | hasLiquids: true 8 | requirements: 9 | [ 10 | graphite/75 11 | silicon/90 12 | titanium/95 13 | plastanium/35 14 | tungsten/15 15 | ] 16 | consumes: 17 | { 18 | liquid: 19 | { 20 | liquid: oil 21 | amount: 0.6 22 | } 23 | power: 7 24 | } 25 | outputItem: sulfur/4 26 | updateEffect: 27 | { 28 | type: ParticleEffect 29 | colorFrom: f5de78 30 | colorTo: ffffff00 31 | particles: 3 32 | length: 16 33 | region: industrial-diamond 34 | strokeFrom: 4 35 | strokeTo: 0 36 | } 37 | -------------------------------------------------------------------------------- /content/blocks/production/sulfuric-cap.hjson: -------------------------------------------------------------------------------- 1 | description: "Craft [gray]Capsule[] and inject [sky]Acid Sulfuric[] into it" 2 | details: "Make sulfuric capsule super duper fast!" 3 | hasItems: true 4 | hasLiquids: true 5 | health: 650 6 | hasPower: true 7 | craftTime: 30 8 | liquidCapacity: 35 9 | itemCapacity: 15 10 | size: 2 11 | name: Acid Sulfuric Capsule Manufacturer 12 | consumes: 13 | { 14 | power: 3 15 | items: { 16 | items: [ 17 | tungsten/2 18 | ] 19 | } 20 | liquid: { 21 | liquid: acid-sulfuric 22 | amount: 0.05 23 | } 24 | } 25 | category: crafting 26 | outputItem: sulfuric-capsule/1 27 | requirements: 28 | [ 29 | steel/75 30 | tungsten/35 31 | metaglass/45 32 | lead/85 33 | ] -------------------------------------------------------------------------------- /content/blocks/storage/core-omega.hjson: -------------------------------------------------------------------------------- 1 | type: CoreBlock 2 | unitType: gamma-nt 3 | requirements: 4 | [ 5 | copper/14000 6 | silicon/9000 7 | steel/7500 8 | graphite/4500 9 | silic-glass/2500 10 | lead/13000 11 | ] 12 | health: 12500 13 | size: 6 14 | unitCapModifier: 48 15 | category: effect 16 | research: core-nucleus 17 | name: Neuron 18 | description: "A huge core, very durable, can contains a large amount of items" 19 | itemCapacity: 52000 -------------------------------------------------------------------------------- /content/blocks/storage/crate.hjson: -------------------------------------------------------------------------------- 1 | type: StorageBlock 2 | size: 1 3 | name: "Crate" 4 | hasItems: true 5 | itemCapacity: 50 6 | health: 100 7 | requirements: 8 | [ 9 | copper/50 10 | graphite/25 11 | ] -------------------------------------------------------------------------------- /content/blocks/turrets/broken-fuse.hjson: -------------------------------------------------------------------------------- 1 | name: Ruined Fuse 2 | type: ItemTurret 3 | desciption: "An old broken fuse, still usable though" 4 | health: 950 5 | category: turret 6 | size: 2 7 | liquidCapacity: 60 8 | itemCapacity: 20 9 | reloadTime: 90 10 | range: 64 11 | requirements: 12 | [ 13 | copper/35 14 | tungsten/25 15 | ] 16 | buildVisibility: editorOnly 17 | shootSound: shotgun 18 | recoilAmount: 2 19 | rotateSpeed: 15 20 | ammoTypes: 21 | { 22 | scrap: { 23 | type: ShrapnelBulletType 24 | length: 70 25 | width: 10 26 | damage: 35 27 | fromColor: e0b28d 28 | toColor: 9b928b 29 | buildingDamageMultiplier: 0.65 30 | } 31 | tungsten: { 32 | type: ShrapnelBulletType 33 | length: 70 34 | width: 10 35 | damage: 35 36 | fromColor: 7ddba6 37 | toColor: 79b392 38 | buildingDamageMultiplier: 0.65 39 | } 40 | } 41 | -------------------------------------------------------------------------------- /content/blocks/turrets/crack.hjson: -------------------------------------------------------------------------------- 1 | name: Crack 2 | type: ItemTurret 3 | desciption: "a small turret" 4 | health: 950 5 | category: turret 6 | size: 1 7 | liquidCapacity: 60 8 | itemCapacity: 20 9 | reloadTime: 60 10 | range: 40 11 | requirements: 12 | [ 13 | copper/35 14 | lead/15 15 | ] 16 | shootSound: shotgun 17 | recoilAmount: 2 18 | rotateSpeed: 15 19 | ammoTypes: { 20 | scrap: { 21 | type: ShrapnelBulletType 22 | length: 45 23 | width: 10 24 | damage: 25 25 | fromColor: e0b28d 26 | toColor: 9b928b 27 | buildingDamageMultiplier: 0.65 28 | } 29 | lead: { 30 | type: ShrapnelBulletType 31 | length: 45 32 | width: 10 33 | damage: 30 34 | fromColor: e0b28d 35 | toColor: 9b928b 36 | buildingDamageMultiplier: 0.65 37 | } 38 | graphite: { 39 | type: ShrapnelBulletType 40 | length: 45 41 | width: 10 42 | damage: 45 43 | fromColor: e0b28d 44 | toColor: 9b928b 45 | buildingDamageMultiplier: 0.65 46 | } 47 | } 48 | -------------------------------------------------------------------------------- /content/blocks/turrets/current.hjson: -------------------------------------------------------------------------------- 1 | type: PowerTurret 2 | description: "Shoot Electric bullet" 3 | size: 2 4 | name: "Current" 5 | health: 750 6 | targetAir: false 7 | targetGround: true 8 | rotateSpeed: 5 9 | reloadTime: 45 10 | shots: 7 11 | shotDelay: 5 12 | inaccuracy: 18 13 | burstSpacing: 1.5 14 | powerUse: 3.55 15 | shootSound: spark 16 | range: 104 17 | requirements: 18 | [ 19 | tungsten/55 20 | lead/65 21 | copper/55 22 | ] 23 | shootType: 24 | { 25 | type: BasicBulletType 26 | shootEffect: lightningShoot 27 | backColor: a9d8ff 28 | frontColor: ffffff 29 | collidesAir: false 30 | trailLength: 10 31 | status: shocked 32 | trailWidth: 1.2 33 | width: 5 34 | speed: 3 35 | height: 10 36 | damage: 15 37 | trailColor: a9d8ff 38 | } 39 | category: turret 40 | -------------------------------------------------------------------------------- /content/blocks/turrets/double-dence.hjson: -------------------------------------------------------------------------------- 1 | type: ItemTurret 2 | spread: 2.75 3 | name: big gun (wip) 4 | inaccuracy: 4 5 | recoilAmount: 2.5 6 | alternate: true 7 | reload: 50 8 | shots: 2 9 | range: 185 10 | category: turret 11 | shootY: 4.25 12 | powerUse: 1.3 13 | requirements: 14 | [ 15 | surge-alloy/75 16 | titanium/125 17 | lead/35 18 | ] 19 | size: 2 20 | health: 750 21 | ammoTypes: 22 | { 23 | sulfuric-capsule: { 24 | lifetime: 35 25 | speed: 3 26 | height: 10 27 | width: 8 28 | type: BasicBulletType 29 | shrinkY: -1 30 | shrinkX: -1 31 | fragBullets: 9 32 | frontColor: ffffff00 33 | collides: false 34 | collidesAir: true 35 | trailLength: 10 36 | trailColor: 88bdbdae 37 | backColor: ffffffff 38 | fragCone: 130 39 | sprite: industrial-sulfur-cap 40 | maxRange: 80 41 | lightOpacity: 0 42 | fragBullet: { 43 | type: LiquidBulletType 44 | liquid: acid-sulfuric 45 | orbSize: 3.8 46 | lifetime: 60 47 | } 48 | } 49 | } -------------------------------------------------------------------------------- /content/blocks/turrets/electro.hjson: -------------------------------------------------------------------------------- 1 | type: PowerTurret 2 | requirements: 3 | [ 4 | tungsten/60 5 | silicon/55 6 | steel/45 7 | lead/95 8 | ] 9 | range: 180 10 | changeTime: 20 11 | spread: 10 12 | name: Polearm 13 | category: turret 14 | shots: 2 15 | shootSound: laser 16 | description: "A Quick-shoot lancer that can paralyze air enemy" 17 | chargeMaxDelay: 5 18 | chargeEffects: 5 19 | recoilAmount: 1.7 20 | reloadTime: 50 21 | cooldown: 0.03 22 | powerUse: 7.5 23 | shootShake: 1.5 24 | shootEffect: lancerLaserShoot 25 | chargeEffect: lancerLaserCharge 26 | chargeBeginEffect: lancerLaserChargeBegin 27 | heatColor: ff0000 28 | size: 2 29 | health: 950 30 | targetAir: true 31 | targetGround: false 32 | shootType: 33 | { 34 | colors: [85c8ff, a9d8ff, ffffff] 35 | hitEffect: hitLancer 36 | hitSize: 4 37 | type: LaserBulletType 38 | status: industrial-electrocuted 39 | lifetime: 13 40 | damage: 35 41 | width: 10 42 | length: 185 43 | ammoMultiplier: 1 44 | } 45 | -------------------------------------------------------------------------------- /content/blocks/turrets/flame-thrower-a.hjson: -------------------------------------------------------------------------------- 1 | name: Large Scorch 2 | description: "A Larger flame thrower, can cause lot of fire" 3 | shots: 3 4 | spread: 8 5 | range: 30 6 | reloadTime: 20 7 | shootSound: flame 8 | health: 750 9 | type: ItemTurret 10 | size: 2 11 | requirements: 12 | [ 13 | tungsten/75 14 | steel/35 15 | graphite/45 16 | metaglass/15 17 | ] 18 | category: turret 19 | ammoTypes: 20 | { 21 | coal: { 22 | type: FireBulletType 23 | radius: 3.5 24 | speed: 3.5 25 | lifetime: 70 26 | status: burning 27 | damage: 7 28 | maxRange: 37 29 | fireTrailChance: 0.08 30 | } 31 | } -------------------------------------------------------------------------------- /content/blocks/turrets/paradox.hjson: -------------------------------------------------------------------------------- 1 | type: TractorBeamTurret 2 | name: Paradox 3 | description: "Shoot a more powerful Tractor beam." 4 | laserWidth: 1 5 | scaledForce: 10 6 | status: slow 7 | size: 3 8 | force: 30 9 | targetGround: false 10 | damage: 0.7 11 | range: 384 12 | requirements: 13 | [ 14 | silicon/250 15 | titanium/195 16 | plastanium/45 17 | thorium/25 18 | lead/35 19 | ] 20 | category: turret 21 | consumes: { 22 | power: 7 23 | } 24 | -------------------------------------------------------------------------------- /content/blocks/turrets/react.hjson: -------------------------------------------------------------------------------- 1 | type: ItemTurret 2 | chargeTime: 60 3 | name: React 4 | category: turret 5 | shootEffect: 6 | { 7 | type: MultiEffect 8 | effects: [ 9 | { 10 | type: WaveEffect 11 | sizeFrom: 8 12 | sizeTo: 0 13 | strokeFrom: 0 14 | strokeTo: 3.5 15 | lifeTime: 60 16 | } 17 | { 18 | type: ParticleEffect 19 | sizeFrom: 4 20 | sizeTo: 0 21 | strokeFrom: 3 22 | strokeTo: 0 23 | colorFrom: ffffff00 24 | randLength: true 25 | particles: 6 26 | } 27 | ] 28 | } 29 | health: 750 30 | size: 2 31 | description: "h" 32 | requirements: [ 33 | tungsten/55 34 | steel/95 35 | silicon/35 36 | titanium/25 37 | ] 38 | consumes: 39 | { 40 | items: { 41 | items: [ 42 | steel/2 43 | ] 44 | } 45 | } 46 | range: 80 47 | ammoTypes: 48 | { 49 | tungsten: 50 | { 51 | type: BasicBulletType 52 | backColor: 679c7e 53 | frontColor: 7ddba6 54 | width: 8 55 | height: 8 56 | sprite: industrial-missle 57 | splashDamage: 65 58 | splashDamageRadius: 32 59 | lifeTime: 420 60 | speed: 2 61 | spin: 2 62 | trailEffect: fallSmoke 63 | trailChance: 0.3 64 | } 65 | } 66 | -------------------------------------------------------------------------------- /content/blocks/turrets/recovered-fuse.hjson: -------------------------------------------------------------------------------- 1 | name: Recovered Snap 2 | type: ItemTurret 3 | description: "Recovered Tech, Better, stronger" 4 | health: 950 5 | category: turret 6 | size: 2 7 | liquidCapacity: 60 8 | itemCapacity: 20 9 | reloadTime: 45 10 | range: 80 11 | requirements: 12 | [ 13 | copper/35 14 | tungsten/25 15 | steel/65 16 | graphite/35 17 | ] 18 | shootSound: shotgun 19 | recoilAmount: 2 20 | rotateSpeed: 15 21 | ammoTypes: 22 | { 23 | scrap: 24 | { 25 | type: ShrapnelBulletType 26 | length: 85 27 | width: 10 28 | damage: 35 29 | fromColor: e0b28d 30 | toColor: 9b928b 31 | buildingDamageMultiplier: 0.65 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /content/blocks/turrets/steam.hjson: -------------------------------------------------------------------------------- 1 | type: LiquidTurret 2 | health: 85 3 | reloadTime: 10 4 | description: "Shoot a weak steam of liquid, can only use water and oil for ammo" 5 | range: 72 6 | rotateSpeed: 5 7 | name: Steam 8 | shootEffect: shootLiquid 9 | recoilAmount: 0.1 10 | inaccuracy: 5 11 | liquidCapacity: 10 12 | ammoTypes: { 13 | water: { 14 | type: LiquidBulletType 15 | liquid: water 16 | damage: 0 17 | lifetime: 60 18 | orbSize: 2 19 | } 20 | oil: { 21 | type: LiquidBulletType 22 | liquid: oil 23 | damage: 0 24 | lifetime: 60 25 | orbSize: 2 26 | } 27 | } 28 | requirements: 29 | [ 30 | lead/35 31 | copper/15 32 | ] 33 | category: turret 34 | -------------------------------------------------------------------------------- /content/blocks/units/drone-factory.hjson: -------------------------------------------------------------------------------- 1 | type: UnitFactory 2 | size: 3 3 | name: Drone Factory 4 | health: 220 5 | consumes: 6 | { 7 | power: 1.2 8 | } 9 | plans: 10 | [ 11 | { 12 | unit: drone 13 | time: 1200 14 | requirements: 15 | [ 16 | silicon/35 17 | lead/40 18 | graphite/35 19 | ] 20 | } 21 | { 22 | unit: repairer 23 | time: 900 24 | requirements: 25 | [ 26 | silicon/45 27 | lead/55 28 | graphite/15 29 | ] 30 | } 31 | { 32 | unit: copter-a 33 | time: 900 34 | requirements: 35 | [ 36 | silicon/35 37 | lead/55 38 | graphite/20 39 | ] 40 | } 41 | { 42 | unit: electron 43 | time: 900 44 | requirements: 45 | [ 46 | silicon/25 47 | titanium/15 48 | ] 49 | } 50 | ] 51 | requirements: 52 | [ 53 | lead/85 54 | copper/85 55 | silicon/55 56 | tungsten/25 57 | ] 58 | category: units 59 | -------------------------------------------------------------------------------- /content/blocks/units/upgrader-reconstructor-mkii.hjson: -------------------------------------------------------------------------------- 1 | type: Reconstructor 2 | name: Upgrader Reconstuctor MKII 3 | description: "Upgrade Units to the next Tier." 4 | health: 1600 5 | size: 5 6 | constructTime: 720 7 | requirements: 8 | [ 9 | copper/750 10 | lead/450 11 | titanium/145 12 | silicon/250 13 | ] 14 | upgrades: 15 | [ 16 | [advanced-miner, quin] 17 | [horizon, daybreak] 18 | ] 19 | 20 | consumes: 21 | { 22 | items: { 23 | items: [ 24 | { 25 | item: refined-scrap 26 | amount: 75 27 | } 28 | { 29 | item: titanium 30 | amount: 120 31 | }, 32 | { 33 | item: metaglass 34 | amount: 60 35 | }, 36 | { 37 | item: silicon 38 | amount: 140 39 | } 40 | ] 41 | } 42 | power: 4.3333 43 | } 44 | 45 | category: units -------------------------------------------------------------------------------- /content/blocks/units/upgrader-reconstructor.hjson: -------------------------------------------------------------------------------- 1 | type: Reconstructor 2 | name: Upgrader Reconstuctor 3 | description: "Upgrade Units to the next Tier." 4 | health: 1200 5 | size: 3 6 | constructTime: 720 7 | requirements: 8 | [ 9 | copper/550 10 | lead/350 11 | titanium/75 12 | silicon/125 13 | ] 14 | upgrades: 15 | [ 16 | [mono, advanced-miner] 17 | [flare, flame] 18 | [risso, rissa] 19 | [copter-a, copter-b] 20 | ] 21 | 22 | consumes: 23 | { 24 | items: { 25 | items: [ 26 | { 27 | item: titanium 28 | amount: 30 29 | }, 30 | { 31 | item: lead 32 | amount: 50 33 | }, 34 | { 35 | item: silicon 36 | amount: 40 37 | } 38 | ] 39 | } 40 | power: 2.33 41 | } 42 | 43 | category: units -------------------------------------------------------------------------------- /content/blocks/walls/deca-wall.hjson: -------------------------------------------------------------------------------- 1 | type: Wall 2 | name: Deca Wall 3 | health: 1280 4 | description: "A very durable wall, absorb laser and release lightning on impact" 5 | requirements: 6 | [ 7 | deca/6 8 | surge-alloy/2 9 | ] 10 | size: 1 11 | category: defense 12 | insulated: true 13 | absorbLasers: true -------------------------------------------------------------------------------- /content/blocks/walls/steel-wall-large.hjson: -------------------------------------------------------------------------------- 1 | type: Wall 2 | name: Large Steel Wall 3 | health: 2400 4 | requirements: 5 | [ 6 | steel/24 7 | ] 8 | size: 2 9 | category: defense 10 | -------------------------------------------------------------------------------- /content/blocks/walls/steel-wall.hjson: -------------------------------------------------------------------------------- 1 | type: Wall 2 | name: Steel Wall 3 | health: 600 4 | size: 1 5 | requirements: 6 | [ 7 | steel/6 8 | ] 9 | category: defense 10 | -------------------------------------------------------------------------------- /content/blocks/walls/thicc-deca-wall.hjson: -------------------------------------------------------------------------------- 1 | type: Wall 2 | name: Large Deca Wall 3 | health: 5120 4 | description: "A very durable wall, absorb laser and release lightning on impact. Span Multiple Tile" 5 | requirements: 6 | [ 7 | deca/24 8 | surge-alloy/8 9 | ] 10 | size: 2 11 | category: defense 12 | lightningChance: 0.5 13 | lightningDamage: 15 14 | chanceDeflect: 1 15 | insulated: true 16 | absorbLasers: true32 -------------------------------------------------------------------------------- /content/blocks/walls/tungsten-wall-large.hjson: -------------------------------------------------------------------------------- 1 | type: Wall 2 | name: Large Tungsten Wall 3 | health: 2000 4 | requirements: 5 | [ 6 | tungsten/24 7 | ] 8 | size: 2 9 | category: defense 10 | -------------------------------------------------------------------------------- /content/blocks/walls/tungsten-wall.hjson: -------------------------------------------------------------------------------- 1 | type: Wall 2 | name: Tungsten Wall 3 | health: 500 4 | size: 1 5 | requirements: 6 | [ 7 | tungsten/6 8 | ] 9 | category: defense 10 | -------------------------------------------------------------------------------- /content/items/alum.hjson: -------------------------------------------------------------------------------- 1 | name: Aluminum 2 | color: bdbdbd 3 | hardness: 3 4 | cost: 1.2 5 | -------------------------------------------------------------------------------- /content/items/battery.hjson: -------------------------------------------------------------------------------- 1 | name: Sunfuric Battery 2 | color: 858999 3 | hardness: 3 4 | cost: 2 5 | charge: 2 6 | description: "A large battery used in building" 7 | -------------------------------------------------------------------------------- /content/items/deca.hjson: -------------------------------------------------------------------------------- 1 | name: Ancient Scrap Debris 2 | color: d49570 3 | hardness: 5 4 | cost: 1.2 5 | description: "An very old Debris, surprisingly still very durable" 6 | details: "Ancient people called it Deca" 7 | -------------------------------------------------------------------------------- /content/items/fixed-deca.hjson: -------------------------------------------------------------------------------- 1 | name: Deca Plate 2 | color: d49570 3 | hardness: 10 4 | cost: 1.2 5 | description: "Refined Debris, very conductive" 6 | details: "The old recovered deca, maybe it'll have the same uses as the ancient one" 7 | -------------------------------------------------------------------------------- /content/items/iron.hjson: -------------------------------------------------------------------------------- 1 | color: ab8580 2 | hardness: 3 3 | cost: 1.2 -------------------------------------------------------------------------------- /content/items/pyra-ammo.hjson: -------------------------------------------------------------------------------- 1 | type: Item 2 | flammability: 1.7 3 | color: 848996 4 | name: Pyratite Bullet 5 | description: "A decent bullet with high flammability" 6 | -------------------------------------------------------------------------------- /content/items/quartz.hjson: -------------------------------------------------------------------------------- 1 | type: Item 2 | name: Quartz 3 | color: ab8580 4 | hardness: 3 5 | cost: 1.2 6 | -------------------------------------------------------------------------------- /content/items/refined-scrap.hjson: -------------------------------------------------------------------------------- 1 | type: Item 2 | color: adadadff 3 | cost: 3 4 | name: Refined Scrap -------------------------------------------------------------------------------- /content/items/silic-glass.hjson: -------------------------------------------------------------------------------- 1 | type: Item 2 | name: Silic Glass 3 | color: 5c5f66 4 | hardness: 3 5 | cost: 1.5 6 | description: "A very hard glass" 7 | -------------------------------------------------------------------------------- /content/items/standard-ammo.hjson: -------------------------------------------------------------------------------- 1 | type: Item 2 | flammability: 0.3 3 | color: 848996 4 | name: Standard Bullet 5 | description: "A cheap and weak bullet" 6 | -------------------------------------------------------------------------------- /content/items/steel-ammo.hjson: -------------------------------------------------------------------------------- 1 | type: Item 2 | flammability: 0.35 3 | color: 848996 4 | name: Steel Bullet 5 | description: "A Strong but a little expensive bullet" 6 | -------------------------------------------------------------------------------- /content/items/steel.hjson: -------------------------------------------------------------------------------- 1 | type: Item 2 | name: Steel 3 | color: 848996 4 | hardness: 3 5 | cost: 1.2 -------------------------------------------------------------------------------- /content/items/sulfur.hjson: -------------------------------------------------------------------------------- 1 | type: Item 2 | explosiveness: 0.1 3 | flammability: 1 4 | color: f5de78 5 | name: Sulfur 6 | -------------------------------------------------------------------------------- /content/items/sulfuric-capsule.hjson: -------------------------------------------------------------------------------- 1 | name: Sulfuric Capsule 2 | color: a4c4c7 3 | cost: 2.3 -------------------------------------------------------------------------------- /content/items/tungsten.hjson: -------------------------------------------------------------------------------- 1 | type: Item 2 | color: 7ddba6 3 | hardness: 3 4 | cost: 1.3 5 | name: Tungsten 6 | -------------------------------------------------------------------------------- /content/items/watse-metal.hjson: -------------------------------------------------------------------------------- 1 | name: Watse Metal 2 | color: 4d4e58 3 | hardness: 3 4 | cost: 1.2 5 | -------------------------------------------------------------------------------- /content/liquids/acid-sulfuric.hjson: -------------------------------------------------------------------------------- 1 | heatCapacity: 0 2 | color: 88bdbd 3 | barColor: 88bdbd 4 | research: water 5 | name: Acid Sulfuric 6 | effect: industrial-acid-sulfuric-melting 7 | temperature: 0.6 8 | -------------------------------------------------------------------------------- /content/liquids/dirty-water.hjson: -------------------------------------------------------------------------------- 1 | heatCapacity: 0.3 2 | color: 3e6065ff 3 | barColor: 3e6065ff 4 | effect: wet 5 | research: water 6 | name: Dirty Water 7 | -------------------------------------------------------------------------------- /content/status/acid-sulfuric-melting.hjson: -------------------------------------------------------------------------------- 1 | damageMultiplier: 0.95 2 | reloadMultiplier: 0.8 3 | buildSpeedMultiplier: 0.75 4 | damage: 0.3 5 | color: 88bdbd 6 | name: Acid Sulfuric Melting 7 | affinities: [ 8 | wet 9 | ] 10 | transitionDamage: 13 11 | -------------------------------------------------------------------------------- /content/status/electrocuted.hjson: -------------------------------------------------------------------------------- 1 | name: Low EMP 2 | damageMultiplier: 0.90 3 | speedMultiplier: 0.85 4 | reloadMultiplier: 0.80 5 | buildSpeedMultiplier: 0.55 6 | damage: 0.3 7 | transitionDamage: 20 8 | affinities: 9 | [ 10 | wet 11 | ] 12 | -------------------------------------------------------------------------------- /content/status/healing.hjson: -------------------------------------------------------------------------------- 1 | damage: -3 2 | speedMultiplier: 1.2 3 | color: 98ffa9 4 | effect: 5 | { 6 | type: ParticleEffect 7 | lifetime: 45 8 | particles: 2 9 | sizeFrom: 8 10 | sizeTo: 0 11 | cone: 5 12 | length: 16 13 | region: industrial-heal-small 14 | colorto: 98ffa900 15 | lightColor: 98ffa9ae 16 | colorFrom: 98ffa9 17 | } -------------------------------------------------------------------------------- /content/units/air/copter-a.hjson: -------------------------------------------------------------------------------- 1 | type: flying 2 | name: "Breeze" 3 | health: 250 4 | flying: true 5 | speed: 3 6 | armor: 1 7 | drag: 0.02 8 | hitSize: 10 9 | itemCapacity: 70 10 | engineSize: 0 11 | rotateSpeed: 10 12 | circleTarget: true; 13 | accel: 0.2 14 | range: 150 15 | abilities: 16 | [ 17 | { 18 | type: ShieldRegenFieldAbility 19 | amount: 7 20 | reload: 50 21 | range: 60 22 | max: 20 23 | } 24 | ] 25 | weapons: 26 | [ 27 | { 28 | name: copter-a-weapon 29 | x: 5.25 30 | y: 4.25 31 | inaccuracy: 3 32 | mirror: true 33 | rotate: false 34 | recoil: 1 35 | reload: 10 36 | ejectEffect: { 37 | type: WaveEffect 38 | lifetime: 10 39 | sizeFrom: 0 40 | sizeTo: 6 41 | strokeFrom: 6 42 | strokeTo: 0 43 | colorFrom: ffa665 44 | colorTo: ffa665 45 | } 46 | bullet: { 47 | type: BasicBulletType 48 | backColor: f9c27a 49 | frontColor: fff8e8 50 | trailColor: f9c27a 51 | trailLength: 5 52 | trailWidth: 0.75 53 | width: 4.75 54 | height: 10 55 | lifetime: 60 56 | damage: 6 57 | speed: 2.83 58 | maxRange: 160 59 | } 60 | } 61 | ] -------------------------------------------------------------------------------- /content/units/air/copter-c.hjson: -------------------------------------------------------------------------------- 1 | type: flying 2 | name: "Breeze" 3 | health: 950 4 | flying: true 5 | speed: 1.9 6 | armor: 7 7 | drag: 0.01 8 | hitSize: 10 9 | itemCapacity: 140 10 | engineSize: 0 11 | rotateSpeed: 7 12 | accel: 0.1 13 | range: 220 14 | weapons: 15 | [ 16 | { 17 | name: copter-c-gun 18 | type: PointDefenseWeapon 19 | x: 9.25 20 | y: 6.75 21 | mirror: true 22 | rotate: true 23 | reload: 20 24 | bullet: { 25 | damage: 30 26 | targetInterval: 8 27 | targetSwitchInterval: 8 28 | maxRange: 220 29 | } 30 | } 31 | { 32 | name: fighter-missler 33 | mirror: false 34 | rotate: false 35 | y: 8 36 | reload: 120 37 | bullet: { 38 | type: BasicBulletType 39 | backColor: 00000000 40 | frontColor: ffffff 41 | trailColor: d06b53 42 | trailLength: 12 43 | trailChance: 0.4 44 | trailWidth: 1.5 45 | width: 6.5 46 | height: 14.25 47 | homingPower: 0.09 48 | homingRange: 80 49 | hitShake: 2.5 50 | lifetime: 90 51 | despawnEffect: { 52 | type: ExplosionEffect 53 | waveRad: 22 54 | waveColor: d06b53 55 | sparks: 12 56 | } 57 | hitEffect: { 58 | type: ExplosionEffect 59 | waveRad: 22 60 | waveColor: d06b53 61 | sparks: 12 62 | } 63 | damage: 25 64 | drag: -0.01 65 | speed: 2 66 | splashDamage: 85 67 | splashDamageRadius: 20 68 | maxRange: 225 69 | sprite: industrial-copter-c-rocket 70 | status: blasted 71 | } 72 | } 73 | ] -------------------------------------------------------------------------------- /content/units/air/copter-d.hjson: -------------------------------------------------------------------------------- 1 | type: flying 2 | name: Squall 3 | description: "Powerful." 4 | hitSize: 45 5 | accel: 0.04 6 | itemCapacity: 460 7 | speed: 1.3 8 | engineSize: 0 9 | flying: true 10 | armor: 11 11 | rotateSpeed: 3.5 12 | circleTarget: true 13 | health: 6500 14 | drag: 0.05 15 | weapons: 16 | [ 17 | { 18 | name: copter-d-big-gun 19 | y: 3 20 | x: 11 21 | reload: 45 22 | shots: 3 23 | spread: 10 24 | shootSound: artillery 25 | alternate: true 26 | mirror: true 27 | rotate: true 28 | shake: 1 29 | bullet: 30 | { 31 | damage: 0 32 | type: ArtilleryBulletType 33 | trailMult: 2 34 | trailColor: f9c27a 35 | frontColor: fff8e8 36 | backColor: f9c27a 37 | width: 8 38 | height: 8 39 | speed: 2.3 40 | splashDamageRadius: 80 41 | splashDamage: 45 42 | } 43 | } 44 | ] -------------------------------------------------------------------------------- /content/units/air/drone.hjson: -------------------------------------------------------------------------------- 1 | type: flying 2 | flying: true 3 | speed: 3.5 4 | accel: 0.08 5 | name: "Transport Drone" 6 | drag: 0.02 7 | description: "A Transport drone that can move very fast and carry a decent amount of items, has no AI and must be controlled by logistic" 8 | health: 75 9 | itemCapacity: 40 10 | engineSize: 0 11 | -------------------------------------------------------------------------------- /content/units/air/electron.hjson: -------------------------------------------------------------------------------- 1 | name: Pin 2 | speed: 4 3 | hitSize: 7 4 | commandLimit: 6 5 | type: flying 6 | flying: true 7 | rotateSpeed: 15 8 | engineOffset: 4 9 | itemCapacity: 45 10 | drag: 0.01 11 | hitSize: 5.75 12 | health: 130 13 | description: "A Hit-and-run unit, slowly cover itself with a weak shield" 14 | circleTarget: true 15 | accel: 0.08 16 | range: 80 17 | abilities: 18 | [ 19 | { 20 | type: MoveLightningAbility 21 | minSpeed: 2 22 | maxSpeed: 4 23 | damage: 15 24 | length: 16 25 | color: a9d8ff 26 | chance: 0.15 27 | } 28 | { 29 | type: MoveLightningAbility 30 | minSpeed: 1 31 | maxSpeed: 4 32 | damage: 0 33 | length: 0 34 | color: a9d8ff 35 | chance: 100 36 | shootSound: none 37 | shootEffect: { 38 | type: ParticleEffect 39 | colorFrom: a9d8ffff 40 | colorTo: 77b4e600 41 | lifetime: 60 42 | particles: 1 43 | length: 0 44 | lightColor: a9d8ff 45 | sizeFrom: 8 46 | region: industrial-electron-trail 47 | } 48 | } 49 | { 50 | type: ShieldRegenFieldAbility 51 | amount: 5 52 | max: 50 53 | reload: 60 54 | range: 16 55 | activeEffect: { 56 | type: WaveEffect 57 | lifetime: 30 58 | sides: 4 59 | colorFrom: a9d8ff 60 | colorTo: a9d8ff 61 | strokeFrom: 3 62 | strokeTo: 0 63 | sizeFrom: 0 64 | sizeTo: 16 65 | } 66 | applyEffect: { 67 | type: WaveEffect 68 | lifetime: 20 69 | sides: 4 70 | colorFrom: a9d8ff 71 | colorTo: a9d8ff 72 | strokeFrom: 3 73 | strokeTo: 0 74 | sizeFrom: 8 75 | sizeTo: 0 76 | } 77 | } 78 | ] -------------------------------------------------------------------------------- /content/units/air/gamma-nt.hjson: -------------------------------------------------------------------------------- 1 | type: flying 2 | name: "Large gamma (WIP name, will be changed)" 3 | health: 800 4 | controller: BuilderAI 5 | flying: true 6 | speed: 5 7 | accel: 0.2 8 | buildSpeed: 2.3 9 | rotateSpeed: 8 10 | engineOffset: 9.25 11 | engineSize: 2.25 12 | armor: 6 13 | itemCapacity: 120 14 | commandLimit: 9 15 | lowAltitude: true 16 | 17 | drag: 0.08 18 | range: 120 19 | abilities: 20 | [ 21 | { 22 | type: ShieldRegenFieldAbility 23 | amount: 10 24 | reload: 60 25 | range: 60 26 | max: 60 27 | } 28 | ] 29 | //balacing soon™️ 30 | weapons: 31 | [ 32 | { 33 | name: beam-boom-bamm-le-great-beanos 34 | y: 5 35 | x: 0 36 | mirror: false 37 | rotate: false 38 | reload: 45 39 | chargeTime: 30 40 | shootShake: 1 41 | chargeEffect: industrial-diamond 42 | shootEffect: { 43 | type: MultiEffect 44 | effects: [ 45 | { 46 | type: ParticleEffect 47 | particles: 1 48 | length: 0 49 | spin: 8 50 | sizeFrom: 0 51 | sizeTo: 16 52 | colorFrom: ffd37fff 53 | colorTo: ffd37f00 54 | lifeTime: 25 55 | } 56 | { 57 | type: ParticleEffect 58 | particles: 7 59 | length: 18 60 | colorFrom: ffd37f 61 | colorTo: ffd37f 62 | lifeTime: 15 63 | line: true 64 | lenTo: 0 65 | cone: 50 66 | lenFrom: 4 67 | } 68 | ] 69 | } 70 | shootSound: laser 71 | bullet: { 72 | buildingDamageMultiplier: 0.05 73 | damage: 35 74 | lifetime: 30 75 | width: 8 76 | length: 100 77 | maxRange: 95 78 | type: LaserBulletType 79 | colors: [ffd37f, ffd37f, ffffff] 80 | } 81 | } 82 | ] -------------------------------------------------------------------------------- /content/units/air/repairer.hjson: -------------------------------------------------------------------------------- 1 | type: flying 2 | flying: true 3 | speed: 3.5 4 | accel: 0.08 5 | name: "Repair Drone" 6 | drag: 0.02 7 | description: "A Transport drone that can move very fast and carry a decent amount of items, has no AI and must be controlled by logistic" 8 | health: 100 9 | itemCapacity: 25 10 | engineSize: 0 11 | controller: RepairAI 12 | weapons: 13 | [ 14 | { 15 | name: repairer-laser 16 | x:0 17 | y:0 18 | mirror: false 19 | reload: 20 20 | rotate: false 21 | 22 | bullet: { 23 | type: LaserBoltBulletType 24 | speed: 5 25 | lifetime: 30 26 | healPercent: 10 27 | collidesTeam: true 28 | backColor: 98ffa9 29 | frontColor: ffffff 30 | shootEffect: { 31 | type: WaveEffect 32 | colorFrom: 98ffa9 33 | colorTo: 98ffa9 34 | sizeFrom: 0 35 | sizeTo: 8 36 | strokeFrom: 4 37 | strokeTo: 0 38 | lifetime: 20 39 | sides: 4 40 | } 41 | hitEffect: { 42 | type: WaveEffect 43 | colorFrom: 98ffa9 44 | colorTo: 98ffa9 45 | sizeFrom: 8 46 | sizeTo: 0 47 | strokeFrom: 4 48 | strokeTo: 0 49 | lifetime: 20 50 | sides: 4 51 | } 52 | despawnEffect: { 53 | type: WaveEffect 54 | colorFrom: 98ffa9 55 | colorTo: 98ffa9 56 | sizeFrom: 8 57 | sizeTo: 0 58 | strokeFrom: 4 59 | strokeTo: 0 60 | lifetime: 20 61 | sides: 4 62 | } 63 | } 64 | } 65 | ] 66 | -------------------------------------------------------------------------------- /content/units/attacker/daybreak.hjson: -------------------------------------------------------------------------------- 1 | name: Daybreak 2 | speed: 1.65 3 | accel: 0.08 4 | drag: 0.016 5 | type: flying 6 | flying: true 7 | hitSize: 9 8 | range: 140 9 | faceTarget: false 10 | armor: 6 11 | weapons: 12 | [ 13 | { 14 | name: daybreaker 15 | x: 3 16 | y: 0 17 | reload: 30 18 | shots: 4 19 | mirror: true 20 | alternate: true 21 | inaccuracy: 15 22 | ignoreRotaion: true 23 | shotDelay: 4 24 | shootSound: none 25 | bullet: 26 | { 27 | type: BombBulletType 28 | backColor: f9c27a 29 | frontColor: fff8e8 30 | width: 10 31 | height: 14 32 | hitEffect: flakExplosion 33 | shootEffect: none 34 | smokeEffect: none 35 | status: blasted 36 | statusDuration: 60 37 | damage: 27 38 | splashDamage: 15 39 | splashDamageRadius: 25 40 | fragBullets: 3 41 | fragBullet: { 42 | type: BasicBulletType 43 | lifeTime: 6 44 | speed: 3 45 | height: 4 46 | width: 3 47 | } 48 | } 49 | } 50 | ] -------------------------------------------------------------------------------- /content/units/attacker/flame.hjson: -------------------------------------------------------------------------------- 1 | type: flying 2 | name: "Bask" 3 | description: "An advanced Flare, shoot swarm of missile" 4 | health: 220 5 | flying: true 6 | speed: 4 7 | armor: 1 8 | drag: 0.02 9 | itemCapacity: 70 10 | rotateSpeed: 20 11 | circleTarget: true; 12 | accel: 0.10 13 | range: 150 14 | abilities: 15 | [ 16 | { 17 | type: ShieldRegenFieldAbility 18 | amount: 5 19 | reload: 60 20 | range: 60 21 | max: 20 22 | } 23 | ] 24 | weapons: 25 | [ 26 | { 27 | name: fighter-missler 28 | x: 4 29 | y: 3 30 | inaccuracy: 20 31 | shotDelay: 3.5 32 | shots: 4 33 | mirror: true 34 | rotate: false 35 | reload: 60 36 | ejectEffect: { 37 | type: WaveEffect 38 | lifetime: 10 39 | sizeFrom: 0 40 | sizeTo: 10 41 | strokeFrom: 6 42 | strokeTo: 0 43 | 44 | } 45 | 46 | bullet: { 47 | type: MissileBulletType 48 | backColor: e58956 49 | frontColor: ffd2ae 50 | trailColor: e58956 51 | trailLength: 7 52 | trailWidth: 2 53 | width: 7 54 | height: 10 55 | homingRange: 56 56 | homingPower: 0.1 57 | drag: -0.03 58 | lifetime: 60 59 | makeFire: true 60 | puddles: 3 61 | puddleRange: 1 62 | puddleAmount: 10 63 | puddleLiquid: slag 64 | damage: 15 65 | keepVelocity: false 66 | maxRange: 180 67 | } 68 | } 69 | ] -------------------------------------------------------------------------------- /content/units/attacker/rissa.hjson: -------------------------------------------------------------------------------- 1 | type: naval 2 | name: Beluga 3 | speed: 1.3 4 | drag: 0.13 5 | hitsize: 13 6 | health: 450 7 | accel: 0.4 8 | rotateSpeed: 3.8 9 | trailLength: 20 10 | rotateShooting: false 11 | armor: 4 12 | maxRange: 160 13 | weapons: 14 | [ 15 | { 16 | name: rissa-missiles-mount 17 | reload: 50 18 | shots: 4 19 | shotDelay: 4 20 | x: 0 21 | y: -5 22 | rotate: true 23 | ejectEffect: casing1 24 | shootSound: missile; 25 | bullet: { 26 | type: MissileBulletType 27 | lifetime: 65 28 | width: 8 29 | height: 8 30 | damage: 11 31 | shrinkY: 0 32 | speed: 2.9 33 | drag: 0.003 34 | homingRange: 60 35 | splashDamageRadius: 25 36 | splashDamage: 15 37 | lifetime: 65 38 | frontColor: fff8e8 39 | backColor: f9c27a 40 | hitEffect: blastExplosion 41 | despawnEffect: blastExplosion 42 | weaveScale: 8 43 | weaveMag: 2 44 | } 45 | } 46 | { 47 | name: rissa-rail-gun 48 | reload: 90 49 | range: 160 50 | x: 0 51 | y: 5 52 | mirror: false 53 | rotate: true 54 | bullet: { 55 | type: RailBulletType 56 | length: 160 57 | updateEffect: { 58 | type: ParticleEffect 59 | lifetime: 16 60 | particles: 1 61 | length: 0 62 | sizeFrom: 10 63 | sizeTo: 0 64 | colorFrom: f9c27a 65 | colorTo: f9c27a 66 | region: industrial-widerail 67 | } 68 | updateEffectSeg: 20 69 | damage: 35 70 | } 71 | } 72 | ] -------------------------------------------------------------------------------- /content/units/supporter/advanced-miner.hjson: -------------------------------------------------------------------------------- 1 | type: flying 2 | name: "Tres" 3 | description: "Mines ores. Serves as an indirect upgrade to the Mono." 4 | controller: MinerAI 5 | health: 220 6 | flying: true 7 | speed: 2.1 8 | range: 50 9 | commandLimit: 3 10 | mineTier: 2 11 | mineSpeed: 6 12 | accel: 0.5 13 | itemCapacity: 50 14 | abilities: 15 | [ 16 | { 17 | type: RepairFieldAbility 18 | amount: 10 19 | reload: 30 20 | range: 56 21 | } 22 | ] 23 | payloadCapacity: 1 24 | -------------------------------------------------------------------------------- /content/weather/acid-rain.hjson: -------------------------------------------------------------------------------- 1 | type: RainWeather 2 | opacityMultiplier: 0.8 3 | status: industrial-acid-sulfuric-melting 4 | color: 88bdbd 5 | liquid: acid-sulfuric -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/icon.png -------------------------------------------------------------------------------- /mod.hjson: -------------------------------------------------------------------------------- 1 | name: industrial 2 | displayName: Project Scrap 3 | author: Eclipse 4 | description: "Well, its a WIP. It currently adds a few miscellaneous items, units, and its own reconstructers.\n 5 | Click on the releases tab to manually download, or download from the in-game mod browser.\n 6 | It could be fun, ill leave the judgment of whether or not it is fun to you. If you find any issues, please open a issue.\n 7 | Also try [sky]THCworkshopCN/THC-Industry![]\n 8 | Discord @https://discord.gg/JHu9grmxyK\nRequire 3Snake3/multi-lib if your game doesn't working." 9 | version: 0.2.4.5 10 | minGameVersion: 131 11 | -------------------------------------------------------------------------------- /scripts/blocks/ammo-lib.js: -------------------------------------------------------------------------------- 1 | //caught you dirty stealer how dare you steal Eclipse brrrrrrrrrrr 2 | const shotGunLead = extendContent(BasicBulletType, 4, 15, "shell", { 3 | knockback: 0.23, 4 | lifetime: 30, 5 | width: 8, 6 | height: 12, 7 | }); 8 | const shotGunScrap = extendContent(BasicBulletType, 4, 17, "shell", { 9 | knockback: 0.23, 10 | lifetime: 30, 11 | width: 8, 12 | reloadMultiplier: 0.8, 13 | height: 12, 14 | }); 15 | const shotGunGraphite = extendContent(BasicBulletType, 4, 25, "shell", { 16 | knockback: 0.4, 17 | lifetime: 30, 18 | width: 8, 19 | reloadMultiplier: 0.8, 20 | height: 12, 21 | }); 22 | const shotGunTitan = extendContent(BasicBulletType, 4, 18, "shell", { 23 | knockback: 0.23, 24 | lifetime: 30, 25 | width: 6, 26 | reloadMultiplier: 1.2, 27 | height: 12, 28 | pierce: true, 29 | pierceBuilding: true, 30 | pierceCap: 2, 31 | }); 32 | module.exports = { 33 | shotGunScrap:shotGunScrap, 34 | shotGunLead:shotGunLead, 35 | shotGunGraphite:shotGunGraphite, 36 | shotGunTitan:shotGunTitan, 37 | } -------------------------------------------------------------------------------- /scripts/blocks/multicrafter/ammo-factory.js: -------------------------------------------------------------------------------- 1 | const multiLib = require("multi-lib"); 2 | //you can use GenericSmelter instead GenericCrafter 3 | //also GenericSmelter.SmelterBuild instead GenericCrafter.GenericCrafterBuild 4 | // ▼this has to be same with .json file name 5 | // 6 | const multi=multiLib.MultiCrafter(GenericCrafter,GenericCrafter.GenericCrafterBuild,"ammo-factory",[ 7 | /*default form for each recipes. You can change values. 8 | { 9 | input:{ 10 | items:[], Modded Item: "mod-name-item-name/amount", Vanilla Item: "item-name/amount" 11 | liquids:[], Modded Liquid: "mod-name-liquid-name/amount", Vanilla liquid: "liquid-name/amount" 12 | power:0, 13 | }, 14 | output:{ 15 | items:[], 16 | liquids:[], 17 | power:0, 18 | }, 19 | craftTime:80, 20 | },*/ 21 | {//1 22 | input:{ 23 | items:["coal/3","industrial-iron/2"], 24 | liquids:["water/2"], 25 | power: 2.5 26 | }, 27 | output:{ 28 | items:["industrial-standard-ammo/2"], 29 | liquids:["industrial-dirty-water/1"], 30 | }, 31 | craftTime: 90 32 | }, 33 | {//2 34 | input:{ 35 | items:["coal/4","industrial-steel/2"], 36 | liquids:["water/4"], 37 | power: 3.7 38 | }, 39 | output:{ 40 | items:["industrial-steel-ammo/2"], 41 | liquids:["industrial-dirty-water/3"], 42 | }, 43 | craftTime: 160 44 | }, 45 | {//3 46 | input:{ 47 | items:["pyratite/2","lead/4"], 48 | liquids:["water/3"], 49 | power: 2.7 50 | }, 51 | output:{ 52 | items:["industrial-pyra-ammo/4"], 53 | liquids:["industrial-dirty-water/1.5"], 54 | }, 55 | craftTime: 100 56 | }, 57 | ],{ 58 | /*you can customize block here. ex) load()*/ 59 | }, 60 | /*this is Object constructor. This way is much better than literal way{a:123} 61 | you can replace this with {} if you don't want to modify entity*/ 62 | function Extra(){}); 63 | -------------------------------------------------------------------------------- /scripts/blocks/phase.js: -------------------------------------------------------------------------------- 1 | const phaseConstructor = extend(GenericCrafter, "phase-constructor", { 2 | load() { 3 | this.super$load(); 4 | this.topRegion = Core.atlas.find(this.name + "-top"); 5 | this.barRegion = Core.atlas.find(this.name + "-bar"); 6 | this.pointRegion = Core.atlas.find(this.name + "-point"); 7 | this.phaseRegion = Core.atlas.find(this.name + "-phase"); 8 | }, 9 | icons(){ 10 | return [ 11 | this.region,this.phaseRegion,this.barRegion,this.pointRegion,this.topRegion 12 | ]; 13 | } 14 | }); 15 | phaseConstructor.buildType = () => extend(GenericCrafter.GenericCrafterBuild, phaseConstructor, { 16 | draw() { 17 | Draw.rect(phaseConstructor.region, this.x, this.y); 18 | 19 | Draw.alpha(0.5 + Mathf.absin(this.totalProgress, 10, 0.5)); 20 | 21 | Draw.rect(phaseConstructor.phaseRegion, this.x, this.y, 0); 22 | 23 | Draw.alpha(1); 24 | 25 | Draw.rect(phaseConstructor.barRegion, this.x + Mathf.cos(this.totalProgress, 40, 4), this.y); 26 | 27 | Draw.rect(phaseConstructor.pointRegion, this.x + Mathf.cos(this.totalProgress, 40, 4), this.y + Mathf.sin(this.totalProgress, 20, 4)); 28 | 29 | Draw.rect(phaseConstructor.topRegion, this.x, this.y); 30 | } 31 | }); 32 | //Thank Pankiwi :D 33 | -------------------------------------------------------------------------------- /scripts/blocks/refinery.js: -------------------------------------------------------------------------------- 1 | const refinery = extend( GenericCrafter, "refinery", {}); 2 | refinery.drawer = new DrawRotator(); 3 | const batteryMachine = extend( GenericCrafter, "battery-machine", {}); 4 | batteryMachine.drawer = new DrawRotator(); 5 | const bigKiln = extend( AttributeCrafter, "meta-kilnii", {}); 6 | bigKiln.drawer = new DrawSmelter(); 7 | const smolSteel = extend( GenericCrafter, "steel-smelter", {}); 8 | smolSteel.drawer = new DrawSmelter(); 9 | const bigSteel = extend( AttributeCrafter, "steel-forge", {}); 10 | bigSteel.drawer = new DrawSmelter(); 11 | const silicglass = extend( GenericCrafter, "silic-glass-smelter", {}); 12 | silicglass.drawer = DrawSmelter(); 13 | const quartRefine = extend( GenericCrafter, "quartz-refinery", {}); 14 | const spri = new DrawRotator(); 15 | spri.spinSpeed = 5 16 | quartRefine.drawer = spri 17 | const thiccSilicGlass = extend( GenericCrafter, "silic-glass-forge", {}); 18 | thiccSilicGlass.drawer = DrawSmelter(); 19 | const pressDeca = extend( GenericCrafter, "deca-refinery", {}); 20 | const press = new DrawAnimation(); 21 | press.frameCount = 16 22 | pressDeca.drawer = press 23 | const capsuleInjector = extend( GenericCrafter, "sulfuric-cap", {}); 24 | const injection = new DrawAnimation(); 25 | injection.frameCount = 13 26 | injection.sine = false 27 | //Injection :flushed: 28 | capsuleInjector.drawer = injection -------------------------------------------------------------------------------- /scripts/blocks/turrets/test.js: -------------------------------------------------------------------------------- 1 | const test = extendContent(ItemTurret, "testing-turret", { 2 | shots = 2, 3 | health = 100, 4 | size = 1, 5 | reloadTime = 10, 6 | rotateSpeed = 20 7 | }); 8 | test.ammo( 9 | Items.copper, Bullets.standardCopper, 10 | ); 11 | test.requirements = ItemStack.with( 12 | Items.copper, 10 13 | ); 14 | test.category = Category.turret; -------------------------------------------------------------------------------- /scripts/event/collecting.js: -------------------------------------------------------------------------------- 1 | //listen for the event where a unit is destroyed 2 | Events.on(UnitDestroyEvent, test => { 3 | //display toast on top of screen when the unit is a crawler 4 | let u = test.unit 5 | if(u = crawler) { 6 | Vars.ui.hudfrag.showToast("Pathetic Crawler."); 7 | } 8 | }) 9 | -------------------------------------------------------------------------------- /scripts/main.js: -------------------------------------------------------------------------------- 1 | require("blocks/refinery"); 2 | require("blocks/heat-generator"); 3 | require("blocks/sulfur"); 4 | require("units/drone"); 5 | require("units/copterC"); 6 | require("blocks/phase"); 7 | //require("event/collecting") 8 | require("blocks/multicrafter/ammo-factory") 9 | require("blocks/multicrafter/thicc-forge") 10 | require("blocks/turrets/test") -------------------------------------------------------------------------------- /sounds/sulfuric-react.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sounds/sulfuric-react.ogg -------------------------------------------------------------------------------- /sprites/blocks/crafters/ammo-factory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/crafters/ammo-factory.png -------------------------------------------------------------------------------- /sprites/blocks/crafters/refinery-rotator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/crafters/refinery-rotator.png -------------------------------------------------------------------------------- /sprites/blocks/crafters/refinery-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/crafters/refinery-top.png -------------------------------------------------------------------------------- /sprites/blocks/crafters/refinery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/crafters/refinery.png -------------------------------------------------------------------------------- /sprites/blocks/crafters/thicc-forge-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/crafters/thicc-forge-top.png -------------------------------------------------------------------------------- /sprites/blocks/crafters/thicc-forge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/crafters/thicc-forge.png -------------------------------------------------------------------------------- /sprites/blocks/defensive/area-accel-liquid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/defensive/area-accel-liquid.png -------------------------------------------------------------------------------- /sprites/blocks/defensive/area-accel-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/defensive/area-accel-top.png -------------------------------------------------------------------------------- /sprites/blocks/defensive/area-accel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/defensive/area-accel.png -------------------------------------------------------------------------------- /sprites/blocks/defensive/smol-projector-full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/defensive/smol-projector-full.png -------------------------------------------------------------------------------- /sprites/blocks/defensive/smol-projector-team.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/defensive/smol-projector-team.png -------------------------------------------------------------------------------- /sprites/blocks/defensive/smol-projector-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/defensive/smol-projector-top.png -------------------------------------------------------------------------------- /sprites/blocks/defensive/smol-projector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/defensive/smol-projector.png -------------------------------------------------------------------------------- /sprites/blocks/distribution/not-a-router.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/distribution/not-a-router.png -------------------------------------------------------------------------------- /sprites/blocks/distribution/silic-conveyor-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/distribution/silic-conveyor-0.png -------------------------------------------------------------------------------- /sprites/blocks/distribution/silic-conveyor-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/distribution/silic-conveyor-1.png -------------------------------------------------------------------------------- /sprites/blocks/distribution/silic-conveyor-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/distribution/silic-conveyor-2.png -------------------------------------------------------------------------------- /sprites/blocks/distribution/silic-conveyor-edge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/distribution/silic-conveyor-edge.png -------------------------------------------------------------------------------- /sprites/blocks/distribution/silic-conveyor-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/distribution/silic-conveyor-icon.png -------------------------------------------------------------------------------- /sprites/blocks/distribution/silic-conveyor-stack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/distribution/silic-conveyor-stack.png -------------------------------------------------------------------------------- /sprites/blocks/distribution/silic-conveyor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/distribution/silic-conveyor.png -------------------------------------------------------------------------------- /sprites/blocks/distribution/tungsten-bridge-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/distribution/tungsten-bridge-arrow.png -------------------------------------------------------------------------------- /sprites/blocks/distribution/tungsten-bridge-bridge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/distribution/tungsten-bridge-bridge.png -------------------------------------------------------------------------------- /sprites/blocks/distribution/tungsten-bridge-end.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/distribution/tungsten-bridge-end.png -------------------------------------------------------------------------------- /sprites/blocks/distribution/tungsten-bridge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/distribution/tungsten-bridge.png -------------------------------------------------------------------------------- /sprites/blocks/drills/sulfur-drill-item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/drills/sulfur-drill-item.png -------------------------------------------------------------------------------- /sprites/blocks/drills/sulfur-drill-rotator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/drills/sulfur-drill-rotator.png -------------------------------------------------------------------------------- /sprites/blocks/drills/sulfur-drill-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/drills/sulfur-drill-top.png -------------------------------------------------------------------------------- /sprites/blocks/drills/sulfur-drill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/drills/sulfur-drill.png -------------------------------------------------------------------------------- /sprites/blocks/drills/thicc-waterex-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/drills/thicc-waterex-icon.png -------------------------------------------------------------------------------- /sprites/blocks/drills/thicc-waterex-liquid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/drills/thicc-waterex-liquid.png -------------------------------------------------------------------------------- /sprites/blocks/drills/thicc-waterex-rotator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/drills/thicc-waterex-rotator.png -------------------------------------------------------------------------------- /sprites/blocks/drills/thicc-waterex-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/drills/thicc-waterex-top.png -------------------------------------------------------------------------------- /sprites/blocks/drills/thicc-waterex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/drills/thicc-waterex.png -------------------------------------------------------------------------------- /sprites/blocks/drills/tungsten-drill-item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/drills/tungsten-drill-item.png -------------------------------------------------------------------------------- /sprites/blocks/drills/tungsten-drill-rotator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/drills/tungsten-drill-rotator.png -------------------------------------------------------------------------------- /sprites/blocks/drills/tungsten-drill-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/drills/tungsten-drill-top.png -------------------------------------------------------------------------------- /sprites/blocks/drills/tungsten-drill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/drills/tungsten-drill.png -------------------------------------------------------------------------------- /sprites/blocks/drills/water-drill-item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/drills/water-drill-item.png -------------------------------------------------------------------------------- /sprites/blocks/drills/water-drill-rotator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/drills/water-drill-rotator.png -------------------------------------------------------------------------------- /sprites/blocks/drills/water-drill-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/drills/water-drill-top.png -------------------------------------------------------------------------------- /sprites/blocks/drills/water-drill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/drills/water-drill.png -------------------------------------------------------------------------------- /sprites/blocks/environment/alum-ore1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/environment/alum-ore1.png -------------------------------------------------------------------------------- /sprites/blocks/environment/alum-ore2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/environment/alum-ore2.png -------------------------------------------------------------------------------- /sprites/blocks/environment/alum-ore3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/environment/alum-ore3.png -------------------------------------------------------------------------------- /sprites/blocks/environment/blue1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/environment/blue1.png -------------------------------------------------------------------------------- /sprites/blocks/environment/blue2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/environment/blue2.png -------------------------------------------------------------------------------- /sprites/blocks/environment/blue3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/environment/blue3.png -------------------------------------------------------------------------------- /sprites/blocks/environment/deca-ore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/environment/deca-ore.png -------------------------------------------------------------------------------- /sprites/blocks/environment/deca1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/environment/deca1.png -------------------------------------------------------------------------------- /sprites/blocks/environment/deca2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/environment/deca2.png -------------------------------------------------------------------------------- /sprites/blocks/environment/deca3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/environment/deca3.png -------------------------------------------------------------------------------- /sprites/blocks/environment/deep-dirty-water.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/environment/deep-dirty-water.png -------------------------------------------------------------------------------- /sprites/blocks/environment/deep-sulfuric-acid-floor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/environment/deep-sulfuric-acid-floor.png -------------------------------------------------------------------------------- /sprites/blocks/environment/dirt-water.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/environment/dirt-water.png -------------------------------------------------------------------------------- /sprites/blocks/environment/dirty-water-floor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/environment/dirty-water-floor.png -------------------------------------------------------------------------------- /sprites/blocks/environment/green1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/environment/green1.png -------------------------------------------------------------------------------- /sprites/blocks/environment/green2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/environment/green2.png -------------------------------------------------------------------------------- /sprites/blocks/environment/green3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/environment/green3.png -------------------------------------------------------------------------------- /sprites/blocks/environment/iron-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/environment/iron-icon.png -------------------------------------------------------------------------------- /sprites/blocks/environment/iron1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/environment/iron1.png -------------------------------------------------------------------------------- /sprites/blocks/environment/iron2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/environment/iron2.png -------------------------------------------------------------------------------- /sprites/blocks/environment/iron3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/environment/iron3.png -------------------------------------------------------------------------------- /sprites/blocks/environment/large-white-sand-wall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/environment/large-white-sand-wall.png -------------------------------------------------------------------------------- /sprites/blocks/environment/sulfur-floor1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/environment/sulfur-floor1.png -------------------------------------------------------------------------------- /sprites/blocks/environment/sulfur-floor2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/environment/sulfur-floor2.png -------------------------------------------------------------------------------- /sprites/blocks/environment/sulfur-floor3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/environment/sulfur-floor3.png -------------------------------------------------------------------------------- /sprites/blocks/environment/sulfuric-acid-floor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/environment/sulfuric-acid-floor.png -------------------------------------------------------------------------------- /sprites/blocks/environment/tungsten-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/environment/tungsten-icon.png -------------------------------------------------------------------------------- /sprites/blocks/environment/tungsten1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/environment/tungsten1.png -------------------------------------------------------------------------------- /sprites/blocks/environment/tungsten2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/environment/tungsten2.png -------------------------------------------------------------------------------- /sprites/blocks/environment/tungsten3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/environment/tungsten3.png -------------------------------------------------------------------------------- /sprites/blocks/environment/water-mud-floor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/environment/water-mud-floor.png -------------------------------------------------------------------------------- /sprites/blocks/environment/white-sand-wall1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/environment/white-sand-wall1.png -------------------------------------------------------------------------------- /sprites/blocks/environment/white-sand-wall2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/environment/white-sand-wall2.png -------------------------------------------------------------------------------- /sprites/blocks/environment/whitesand1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/environment/whitesand1.png -------------------------------------------------------------------------------- /sprites/blocks/environment/whitesand2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/environment/whitesand2.png -------------------------------------------------------------------------------- /sprites/blocks/environment/whitesand3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/environment/whitesand3.png -------------------------------------------------------------------------------- /sprites/blocks/liquids/liquid-vault-bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/liquids/liquid-vault-bottom.png -------------------------------------------------------------------------------- /sprites/blocks/liquids/liquid-vault-full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/liquids/liquid-vault-full.png -------------------------------------------------------------------------------- /sprites/blocks/liquids/liquid-vault-liquid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/liquids/liquid-vault-liquid.png -------------------------------------------------------------------------------- /sprites/blocks/liquids/liquid-vault-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/liquids/liquid-vault-top.png -------------------------------------------------------------------------------- /sprites/blocks/liquids/mini-tank-bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/liquids/mini-tank-bottom.png -------------------------------------------------------------------------------- /sprites/blocks/liquids/mini-tank-liquid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/liquids/mini-tank-liquid.png -------------------------------------------------------------------------------- /sprites/blocks/liquids/mini-tank-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/liquids/mini-tank-top.png -------------------------------------------------------------------------------- /sprites/blocks/liquids/mini-tank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/liquids/mini-tank.png -------------------------------------------------------------------------------- /sprites/blocks/liquids/piston-pump-liquid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/liquids/piston-pump-liquid.png -------------------------------------------------------------------------------- /sprites/blocks/liquids/piston-pump-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/liquids/piston-pump-top.png -------------------------------------------------------------------------------- /sprites/blocks/liquids/piston-pump.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/liquids/piston-pump.png -------------------------------------------------------------------------------- /sprites/blocks/logistic/announcement.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/logistic/announcement.png -------------------------------------------------------------------------------- /sprites/blocks/payload/payload-belt-edge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/payload/payload-belt-edge.png -------------------------------------------------------------------------------- /sprites/blocks/payload/payload-belt-full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/payload/payload-belt-full.png -------------------------------------------------------------------------------- /sprites/blocks/payload/payload-belt-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/payload/payload-belt-icon.png -------------------------------------------------------------------------------- /sprites/blocks/payload/payload-belt-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/payload/payload-belt-top.png -------------------------------------------------------------------------------- /sprites/blocks/payload/payload-belt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/payload/payload-belt.png -------------------------------------------------------------------------------- /sprites/blocks/payload/small-block-forge-in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/payload/small-block-forge-in.png -------------------------------------------------------------------------------- /sprites/blocks/payload/small-block-forge-out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/payload/small-block-forge-out.png -------------------------------------------------------------------------------- /sprites/blocks/payload/small-block-forge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/payload/small-block-forge.png -------------------------------------------------------------------------------- /sprites/blocks/payload/small-loader-in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/payload/small-loader-in.png -------------------------------------------------------------------------------- /sprites/blocks/payload/small-loader-out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/payload/small-loader-out.png -------------------------------------------------------------------------------- /sprites/blocks/payload/small-loader.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/payload/small-loader.png -------------------------------------------------------------------------------- /sprites/blocks/payload/small-unloader-in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/payload/small-unloader-in.png -------------------------------------------------------------------------------- /sprites/blocks/payload/small-unloader-out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/payload/small-unloader-out.png -------------------------------------------------------------------------------- /sprites/blocks/payload/small-unloader.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/payload/small-unloader.png -------------------------------------------------------------------------------- /sprites/blocks/power/basic-other/steam-pressure-generator-bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/power/basic-other/steam-pressure-generator-bottom.png -------------------------------------------------------------------------------- /sprites/blocks/power/basic-other/steam-pressure-generator-plasma-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/power/basic-other/steam-pressure-generator-plasma-0.png -------------------------------------------------------------------------------- /sprites/blocks/power/basic-other/steam-pressure-generator-plasma-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/power/basic-other/steam-pressure-generator-plasma-1.png -------------------------------------------------------------------------------- /sprites/blocks/power/basic-other/steam-pressure-generator-plasma-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/power/basic-other/steam-pressure-generator-plasma-2.png -------------------------------------------------------------------------------- /sprites/blocks/power/basic-other/steam-pressure-generator-plasma-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/power/basic-other/steam-pressure-generator-plasma-3.png -------------------------------------------------------------------------------- /sprites/blocks/power/basic-other/steam-pressure-generator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/power/basic-other/steam-pressure-generator.png -------------------------------------------------------------------------------- /sprites/blocks/power/basic-other/sulfur-gen-heat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/power/basic-other/sulfur-gen-heat.png -------------------------------------------------------------------------------- /sprites/blocks/power/basic-other/sulfur-gen-liquid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/power/basic-other/sulfur-gen-liquid.png -------------------------------------------------------------------------------- /sprites/blocks/power/basic-other/sulfur-gen-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/power/basic-other/sulfur-gen-top.png -------------------------------------------------------------------------------- /sprites/blocks/power/basic-other/sulfur-gen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/power/basic-other/sulfur-gen.png -------------------------------------------------------------------------------- /sprites/blocks/power/beacon-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/power/beacon-top.png -------------------------------------------------------------------------------- /sprites/blocks/power/beacon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/power/beacon.png -------------------------------------------------------------------------------- /sprites/blocks/power/burner/heat-gen-big-bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/power/burner/heat-gen-big-bottom.png -------------------------------------------------------------------------------- /sprites/blocks/power/burner/heat-gen-big-liquid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/power/burner/heat-gen-big-liquid.png -------------------------------------------------------------------------------- /sprites/blocks/power/burner/heat-gen-big-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/power/burner/heat-gen-big-top.png -------------------------------------------------------------------------------- /sprites/blocks/power/burner/heat-gen-big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/power/burner/heat-gen-big.png -------------------------------------------------------------------------------- /sprites/blocks/power/burner/heat-generator-bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/power/burner/heat-generator-bottom.png -------------------------------------------------------------------------------- /sprites/blocks/power/burner/heat-generator-liquid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/power/burner/heat-generator-liquid.png -------------------------------------------------------------------------------- /sprites/blocks/power/burner/heat-generator-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/power/burner/heat-generator-top.png -------------------------------------------------------------------------------- /sprites/blocks/power/burner/heat-generator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/power/burner/heat-generator.png -------------------------------------------------------------------------------- /sprites/blocks/power/burner/liquid-burner-bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/power/burner/liquid-burner-bottom.png -------------------------------------------------------------------------------- /sprites/blocks/power/burner/liquid-burner-liquid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/power/burner/liquid-burner-liquid.png -------------------------------------------------------------------------------- /sprites/blocks/power/burner/liquid-burner-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/power/burner/liquid-burner-top.png -------------------------------------------------------------------------------- /sprites/blocks/power/burner/liquid-burner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/power/burner/liquid-burner.png -------------------------------------------------------------------------------- /sprites/blocks/power/burner/smol-liquir-bun-bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/power/burner/smol-liquir-bun-bottom.png -------------------------------------------------------------------------------- /sprites/blocks/power/burner/smol-liquir-bun-liquid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/power/burner/smol-liquir-bun-liquid.png -------------------------------------------------------------------------------- /sprites/blocks/power/burner/smol-liquir-bun-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/power/burner/smol-liquir-bun-top.png -------------------------------------------------------------------------------- /sprites/blocks/power/burner/smol-liquir-bun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/power/burner/smol-liquir-bun.png -------------------------------------------------------------------------------- /sprites/blocks/power/fushion-reactor/thicc-reactor-bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/power/fushion-reactor/thicc-reactor-bottom.png -------------------------------------------------------------------------------- /sprites/blocks/power/fushion-reactor/thicc-reactor-full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/power/fushion-reactor/thicc-reactor-full.png -------------------------------------------------------------------------------- /sprites/blocks/power/fushion-reactor/thicc-reactor-plasma-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/power/fushion-reactor/thicc-reactor-plasma-1.png -------------------------------------------------------------------------------- /sprites/blocks/power/fushion-reactor/thicc-reactor-plasma-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/power/fushion-reactor/thicc-reactor-plasma-2.png -------------------------------------------------------------------------------- /sprites/blocks/power/fushion-reactor/thicc-reactor-plasma-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/power/fushion-reactor/thicc-reactor-plasma-3.png -------------------------------------------------------------------------------- /sprites/blocks/power/fushion-reactor/thicc-reactor-plasma-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/power/fushion-reactor/thicc-reactor-plasma-4.png -------------------------------------------------------------------------------- /sprites/blocks/power/fushion-reactor/thicc-reactor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/power/fushion-reactor/thicc-reactor.png -------------------------------------------------------------------------------- /sprites/blocks/power/node-battery/huge-battery-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/power/node-battery/huge-battery-top.png -------------------------------------------------------------------------------- /sprites/blocks/power/node-battery/huge-battery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/power/node-battery/huge-battery.png -------------------------------------------------------------------------------- /sprites/blocks/power/node-battery/magnetic-coil-rotator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/power/node-battery/magnetic-coil-rotator.png -------------------------------------------------------------------------------- /sprites/blocks/power/node-battery/magnetic-coil-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/power/node-battery/magnetic-coil-top.png -------------------------------------------------------------------------------- /sprites/blocks/power/node-battery/magnetic-coil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/power/node-battery/magnetic-coil.png -------------------------------------------------------------------------------- /sprites/blocks/power/reactor-rtg/big-thorium-reactor-lights.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/power/reactor-rtg/big-thorium-reactor-lights.png -------------------------------------------------------------------------------- /sprites/blocks/power/reactor-rtg/big-thorium-reactor-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/power/reactor-rtg/big-thorium-reactor-top.png -------------------------------------------------------------------------------- /sprites/blocks/power/reactor-rtg/big-thorium-reactor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/power/reactor-rtg/big-thorium-reactor.png -------------------------------------------------------------------------------- /sprites/blocks/power/reactor-rtg/rtg-a-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/power/reactor-rtg/rtg-a-top.png -------------------------------------------------------------------------------- /sprites/blocks/power/reactor-rtg/rtg-a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/power/reactor-rtg/rtg-a.png -------------------------------------------------------------------------------- /sprites/blocks/production/acid-sulfuric-mixer-bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/production/acid-sulfuric-mixer-bottom.png -------------------------------------------------------------------------------- /sprites/blocks/production/acid-sulfuric-mixer-liquid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/production/acid-sulfuric-mixer-liquid.png -------------------------------------------------------------------------------- /sprites/blocks/production/acid-sulfuric-mixer-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/production/acid-sulfuric-mixer-top.png -------------------------------------------------------------------------------- /sprites/blocks/production/acid-sulfuric-mixer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/production/acid-sulfuric-mixer.png -------------------------------------------------------------------------------- /sprites/blocks/production/battery-machine/battery-machine-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/production/battery-machine/battery-machine-icon.png -------------------------------------------------------------------------------- /sprites/blocks/production/battery-machine/battery-machine-rotator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/production/battery-machine/battery-machine-rotator.png -------------------------------------------------------------------------------- /sprites/blocks/production/battery-machine/battery-machine-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/production/battery-machine/battery-machine-top.png -------------------------------------------------------------------------------- /sprites/blocks/production/battery-machine/battery-machine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/production/battery-machine/battery-machine.png -------------------------------------------------------------------------------- /sprites/blocks/production/big-cryo-bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/production/big-cryo-bottom.png -------------------------------------------------------------------------------- /sprites/blocks/production/big-cryo-liquid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/production/big-cryo-liquid.png -------------------------------------------------------------------------------- /sprites/blocks/production/big-cryo-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/production/big-cryo-top.png -------------------------------------------------------------------------------- /sprites/blocks/production/big-cryo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/production/big-cryo.png -------------------------------------------------------------------------------- /sprites/blocks/production/explosive-mixer-rotator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/production/explosive-mixer-rotator.png -------------------------------------------------------------------------------- /sprites/blocks/production/explosive-mixer-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/production/explosive-mixer-top.png -------------------------------------------------------------------------------- /sprites/blocks/production/explosive-mixer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/production/explosive-mixer.png -------------------------------------------------------------------------------- /sprites/blocks/production/filterer-full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/production/filterer-full.png -------------------------------------------------------------------------------- /sprites/blocks/production/filterer-liquid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/production/filterer-liquid.png -------------------------------------------------------------------------------- /sprites/blocks/production/filterer-rotator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/production/filterer-rotator.png -------------------------------------------------------------------------------- /sprites/blocks/production/filterer-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/production/filterer-top.png -------------------------------------------------------------------------------- /sprites/blocks/production/filterer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/production/filterer.png -------------------------------------------------------------------------------- /sprites/blocks/production/meta-kilnii-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/production/meta-kilnii-top.png -------------------------------------------------------------------------------- /sprites/blocks/production/meta-kilnii.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/production/meta-kilnii.png -------------------------------------------------------------------------------- /sprites/blocks/production/phase-constructor-bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/production/phase-constructor-bar.png -------------------------------------------------------------------------------- /sprites/blocks/production/phase-constructor-phase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/production/phase-constructor-phase.png -------------------------------------------------------------------------------- /sprites/blocks/production/phase-constructor-point.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/production/phase-constructor-point.png -------------------------------------------------------------------------------- /sprites/blocks/production/phase-constructor-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/production/phase-constructor-top.png -------------------------------------------------------------------------------- /sprites/blocks/production/phase-constructor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/production/phase-constructor.png -------------------------------------------------------------------------------- /sprites/blocks/production/quartz-refinery-a-liquid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/production/quartz-refinery-a-liquid.png -------------------------------------------------------------------------------- /sprites/blocks/production/quartz-refinery-a-rotator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/production/quartz-refinery-a-rotator.png -------------------------------------------------------------------------------- /sprites/blocks/production/quartz-refinery-a-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/production/quartz-refinery-a-top.png -------------------------------------------------------------------------------- /sprites/blocks/production/quartz-refinery-a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/production/quartz-refinery-a.png -------------------------------------------------------------------------------- /sprites/blocks/production/quartz-refinery-full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/production/quartz-refinery-full.png -------------------------------------------------------------------------------- /sprites/blocks/production/quartz-refinery-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/production/quartz-refinery-icon.png -------------------------------------------------------------------------------- /sprites/blocks/production/quartz-refinery-liquid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/production/quartz-refinery-liquid.png -------------------------------------------------------------------------------- /sprites/blocks/production/quartz-refinery-rotator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/production/quartz-refinery-rotator.png -------------------------------------------------------------------------------- /sprites/blocks/production/quartz-refinery-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/production/quartz-refinery-top.png -------------------------------------------------------------------------------- /sprites/blocks/production/quartz-refinery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/production/quartz-refinery.png -------------------------------------------------------------------------------- /sprites/blocks/production/refine-animation/deca-refinery-frame0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/production/refine-animation/deca-refinery-frame0.png -------------------------------------------------------------------------------- /sprites/blocks/production/refine-animation/deca-refinery-frame1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/production/refine-animation/deca-refinery-frame1.png -------------------------------------------------------------------------------- /sprites/blocks/production/refine-animation/deca-refinery-frame10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/production/refine-animation/deca-refinery-frame10.png -------------------------------------------------------------------------------- /sprites/blocks/production/refine-animation/deca-refinery-frame11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/production/refine-animation/deca-refinery-frame11.png -------------------------------------------------------------------------------- /sprites/blocks/production/refine-animation/deca-refinery-frame12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/production/refine-animation/deca-refinery-frame12.png -------------------------------------------------------------------------------- /sprites/blocks/production/refine-animation/deca-refinery-frame13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/production/refine-animation/deca-refinery-frame13.png -------------------------------------------------------------------------------- /sprites/blocks/production/refine-animation/deca-refinery-frame14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/production/refine-animation/deca-refinery-frame14.png -------------------------------------------------------------------------------- /sprites/blocks/production/refine-animation/deca-refinery-frame15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/production/refine-animation/deca-refinery-frame15.png -------------------------------------------------------------------------------- /sprites/blocks/production/refine-animation/deca-refinery-frame16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/production/refine-animation/deca-refinery-frame16.png -------------------------------------------------------------------------------- /sprites/blocks/production/refine-animation/deca-refinery-frame2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/production/refine-animation/deca-refinery-frame2.png -------------------------------------------------------------------------------- /sprites/blocks/production/refine-animation/deca-refinery-frame3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/production/refine-animation/deca-refinery-frame3.png -------------------------------------------------------------------------------- /sprites/blocks/production/refine-animation/deca-refinery-frame4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/production/refine-animation/deca-refinery-frame4.png -------------------------------------------------------------------------------- /sprites/blocks/production/refine-animation/deca-refinery-frame5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/production/refine-animation/deca-refinery-frame5.png -------------------------------------------------------------------------------- /sprites/blocks/production/refine-animation/deca-refinery-frame6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/production/refine-animation/deca-refinery-frame6.png -------------------------------------------------------------------------------- /sprites/blocks/production/refine-animation/deca-refinery-frame7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/production/refine-animation/deca-refinery-frame7.png -------------------------------------------------------------------------------- /sprites/blocks/production/refine-animation/deca-refinery-frame8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/production/refine-animation/deca-refinery-frame8.png -------------------------------------------------------------------------------- /sprites/blocks/production/refine-animation/deca-refinery-frame9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/production/refine-animation/deca-refinery-frame9.png -------------------------------------------------------------------------------- /sprites/blocks/production/refine-animation/deca-refinery-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/production/refine-animation/deca-refinery-icon.png -------------------------------------------------------------------------------- /sprites/blocks/production/refine-animation/deca-refinery-liquid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/production/refine-animation/deca-refinery-liquid.png -------------------------------------------------------------------------------- /sprites/blocks/production/refine-animation/deca-refinery-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/production/refine-animation/deca-refinery-top.png -------------------------------------------------------------------------------- /sprites/blocks/production/refine-animation/deca-refinery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/production/refine-animation/deca-refinery.png -------------------------------------------------------------------------------- /sprites/blocks/production/silic-glass-forge-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/production/silic-glass-forge-icon.png -------------------------------------------------------------------------------- /sprites/blocks/production/silic-glass-forge-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/production/silic-glass-forge-top.png -------------------------------------------------------------------------------- /sprites/blocks/production/silic-glass-forge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/production/silic-glass-forge.png -------------------------------------------------------------------------------- /sprites/blocks/production/silic-glass-smelter-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/production/silic-glass-smelter-icon.png -------------------------------------------------------------------------------- /sprites/blocks/production/silic-glass-smelter-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/production/silic-glass-smelter-top.png -------------------------------------------------------------------------------- /sprites/blocks/production/silic-glass-smelter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/production/silic-glass-smelter.png -------------------------------------------------------------------------------- /sprites/blocks/production/steel-forge-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/production/steel-forge-top.png -------------------------------------------------------------------------------- /sprites/blocks/production/steel-forge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/production/steel-forge.png -------------------------------------------------------------------------------- /sprites/blocks/production/steel-smelter-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/production/steel-smelter-top.png -------------------------------------------------------------------------------- /sprites/blocks/production/steel-smelter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/production/steel-smelter.png -------------------------------------------------------------------------------- /sprites/blocks/production/sulfur-extractor-bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/production/sulfur-extractor-bottom.png -------------------------------------------------------------------------------- /sprites/blocks/production/sulfur-extractor-liquid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/production/sulfur-extractor-liquid.png -------------------------------------------------------------------------------- /sprites/blocks/production/sulfur-extractor-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/production/sulfur-extractor-top.png -------------------------------------------------------------------------------- /sprites/blocks/production/sulfur-extractor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/production/sulfur-extractor.png -------------------------------------------------------------------------------- /sprites/blocks/production/sulfuric-cap/sulfuric-cap-frame1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/production/sulfuric-cap/sulfuric-cap-frame1.png -------------------------------------------------------------------------------- /sprites/blocks/production/sulfuric-cap/sulfuric-cap-frame10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/production/sulfuric-cap/sulfuric-cap-frame10.png -------------------------------------------------------------------------------- /sprites/blocks/production/sulfuric-cap/sulfuric-cap-frame11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/production/sulfuric-cap/sulfuric-cap-frame11.png -------------------------------------------------------------------------------- /sprites/blocks/production/sulfuric-cap/sulfuric-cap-frame12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/production/sulfuric-cap/sulfuric-cap-frame12.png -------------------------------------------------------------------------------- /sprites/blocks/production/sulfuric-cap/sulfuric-cap-frame13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/production/sulfuric-cap/sulfuric-cap-frame13.png -------------------------------------------------------------------------------- /sprites/blocks/production/sulfuric-cap/sulfuric-cap-frame2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/production/sulfuric-cap/sulfuric-cap-frame2.png -------------------------------------------------------------------------------- /sprites/blocks/production/sulfuric-cap/sulfuric-cap-frame3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/production/sulfuric-cap/sulfuric-cap-frame3.png -------------------------------------------------------------------------------- /sprites/blocks/production/sulfuric-cap/sulfuric-cap-frame4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/production/sulfuric-cap/sulfuric-cap-frame4.png -------------------------------------------------------------------------------- /sprites/blocks/production/sulfuric-cap/sulfuric-cap-frame5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/production/sulfuric-cap/sulfuric-cap-frame5.png -------------------------------------------------------------------------------- /sprites/blocks/production/sulfuric-cap/sulfuric-cap-frame6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/production/sulfuric-cap/sulfuric-cap-frame6.png -------------------------------------------------------------------------------- /sprites/blocks/production/sulfuric-cap/sulfuric-cap-frame7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/production/sulfuric-cap/sulfuric-cap-frame7.png -------------------------------------------------------------------------------- /sprites/blocks/production/sulfuric-cap/sulfuric-cap-frame8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/production/sulfuric-cap/sulfuric-cap-frame8.png -------------------------------------------------------------------------------- /sprites/blocks/production/sulfuric-cap/sulfuric-cap-frame9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/production/sulfuric-cap/sulfuric-cap-frame9.png -------------------------------------------------------------------------------- /sprites/blocks/production/sulfuric-cap/sulfuric-cap-liquid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/production/sulfuric-cap/sulfuric-cap-liquid.png -------------------------------------------------------------------------------- /sprites/blocks/production/sulfuric-cap/sulfuric-cap-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/production/sulfuric-cap/sulfuric-cap-top.png -------------------------------------------------------------------------------- /sprites/blocks/production/sulfuric-cap/sulfuric-cap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/production/sulfuric-cap/sulfuric-cap.png -------------------------------------------------------------------------------- /sprites/blocks/storage/core-omega-full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/storage/core-omega-full.png -------------------------------------------------------------------------------- /sprites/blocks/storage/core-omega-team.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/storage/core-omega-team.png -------------------------------------------------------------------------------- /sprites/blocks/storage/core-omega.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/storage/core-omega.png -------------------------------------------------------------------------------- /sprites/blocks/storage/core-shard-ii-team.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/storage/core-shard-ii-team.png -------------------------------------------------------------------------------- /sprites/blocks/storage/core-shard-ii.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/storage/core-shard-ii.png -------------------------------------------------------------------------------- /sprites/blocks/storage/crate-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/storage/crate-icon.png -------------------------------------------------------------------------------- /sprites/blocks/storage/crate-team.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/storage/crate-team.png -------------------------------------------------------------------------------- /sprites/blocks/storage/crate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/storage/crate.png -------------------------------------------------------------------------------- /sprites/blocks/turrets/broken-fuse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/turrets/broken-fuse.png -------------------------------------------------------------------------------- /sprites/blocks/turrets/crack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/turrets/crack.png -------------------------------------------------------------------------------- /sprites/blocks/turrets/current.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/turrets/current.png -------------------------------------------------------------------------------- /sprites/blocks/turrets/double-dence.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/turrets/double-dence.png -------------------------------------------------------------------------------- /sprites/blocks/turrets/electro-heat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/turrets/electro-heat.png -------------------------------------------------------------------------------- /sprites/blocks/turrets/electro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/turrets/electro.png -------------------------------------------------------------------------------- /sprites/blocks/turrets/flame-thrower-a-heat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/turrets/flame-thrower-a-heat.png -------------------------------------------------------------------------------- /sprites/blocks/turrets/flame-thrower-a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/turrets/flame-thrower-a.png -------------------------------------------------------------------------------- /sprites/blocks/turrets/ordnance-heat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/turrets/ordnance-heat.png -------------------------------------------------------------------------------- /sprites/blocks/turrets/ordnance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/turrets/ordnance.png -------------------------------------------------------------------------------- /sprites/blocks/turrets/paradox-laser-end.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/turrets/paradox-laser-end.png -------------------------------------------------------------------------------- /sprites/blocks/turrets/paradox-laser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/turrets/paradox-laser.png -------------------------------------------------------------------------------- /sprites/blocks/turrets/paradox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/turrets/paradox.png -------------------------------------------------------------------------------- /sprites/blocks/turrets/react.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/turrets/react.png -------------------------------------------------------------------------------- /sprites/blocks/turrets/recovered-fuse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/turrets/recovered-fuse.png -------------------------------------------------------------------------------- /sprites/blocks/turrets/salve-base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/turrets/salve-base.png -------------------------------------------------------------------------------- /sprites/blocks/turrets/salve-heat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/turrets/salve-heat.png -------------------------------------------------------------------------------- /sprites/blocks/turrets/salve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/turrets/salve.png -------------------------------------------------------------------------------- /sprites/blocks/turrets/sprayer-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/turrets/sprayer-icon.png -------------------------------------------------------------------------------- /sprites/blocks/turrets/sprayer-liquid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/turrets/sprayer-liquid.png -------------------------------------------------------------------------------- /sprites/blocks/turrets/sprayer-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/turrets/sprayer-top.png -------------------------------------------------------------------------------- /sprites/blocks/turrets/sprayer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/turrets/sprayer.png -------------------------------------------------------------------------------- /sprites/blocks/turrets/steam-liquid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/turrets/steam-liquid.png -------------------------------------------------------------------------------- /sprites/blocks/turrets/steam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/turrets/steam.png -------------------------------------------------------------------------------- /sprites/blocks/units/drone-factory-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/units/drone-factory-top.png -------------------------------------------------------------------------------- /sprites/blocks/units/drone-factory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/units/drone-factory.png -------------------------------------------------------------------------------- /sprites/blocks/units/small-block-forge-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/units/small-block-forge-top.png -------------------------------------------------------------------------------- /sprites/blocks/units/small-loader-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/units/small-loader-top.png -------------------------------------------------------------------------------- /sprites/blocks/units/small-unloader-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/units/small-unloader-top.png -------------------------------------------------------------------------------- /sprites/blocks/units/upgrader-reconstructor-mkii-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/units/upgrader-reconstructor-mkii-top.png -------------------------------------------------------------------------------- /sprites/blocks/units/upgrader-reconstructor-mkii.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/units/upgrader-reconstructor-mkii.png -------------------------------------------------------------------------------- /sprites/blocks/units/upgrader-reconstructor-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/units/upgrader-reconstructor-top.png -------------------------------------------------------------------------------- /sprites/blocks/units/upgrader-reconstructor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/units/upgrader-reconstructor.png -------------------------------------------------------------------------------- /sprites/blocks/walls/deca-wall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/walls/deca-wall.png -------------------------------------------------------------------------------- /sprites/blocks/walls/steel-wall-large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/walls/steel-wall-large.png -------------------------------------------------------------------------------- /sprites/blocks/walls/steel-wall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/walls/steel-wall.png -------------------------------------------------------------------------------- /sprites/blocks/walls/thicc-deca-wall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/walls/thicc-deca-wall.png -------------------------------------------------------------------------------- /sprites/blocks/walls/tungsten-wall-large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/walls/tungsten-wall-large.png -------------------------------------------------------------------------------- /sprites/blocks/walls/tungsten-wall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/blocks/walls/tungsten-wall.png -------------------------------------------------------------------------------- /sprites/githob/Industrial_banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/githob/Industrial_banner.png -------------------------------------------------------------------------------- /sprites/githob/mod1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/githob/mod1.png -------------------------------------------------------------------------------- /sprites/githob/mod2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/githob/mod2.png -------------------------------------------------------------------------------- /sprites/items/alum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/items/alum.png -------------------------------------------------------------------------------- /sprites/items/battery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/items/battery.png -------------------------------------------------------------------------------- /sprites/items/deca.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/items/deca.png -------------------------------------------------------------------------------- /sprites/items/explosive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/items/explosive.png -------------------------------------------------------------------------------- /sprites/items/fixed-deca.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/items/fixed-deca.png -------------------------------------------------------------------------------- /sprites/items/iron.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/items/iron.png -------------------------------------------------------------------------------- /sprites/items/pyra-ammo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/items/pyra-ammo.png -------------------------------------------------------------------------------- /sprites/items/quartz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/items/quartz.png -------------------------------------------------------------------------------- /sprites/items/refined-scrap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/items/refined-scrap.png -------------------------------------------------------------------------------- /sprites/items/silic-glass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/items/silic-glass.png -------------------------------------------------------------------------------- /sprites/items/standard-ammo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/items/standard-ammo.png -------------------------------------------------------------------------------- /sprites/items/steel-ammo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/items/steel-ammo.png -------------------------------------------------------------------------------- /sprites/items/steel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/items/steel.png -------------------------------------------------------------------------------- /sprites/items/sulfur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/items/sulfur.png -------------------------------------------------------------------------------- /sprites/items/sulfuric-capsule.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/items/sulfuric-capsule.png -------------------------------------------------------------------------------- /sprites/items/tungsten.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/items/tungsten.png -------------------------------------------------------------------------------- /sprites/items/watse-metal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/items/watse-metal.png -------------------------------------------------------------------------------- /sprites/items/what.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/items/what.png -------------------------------------------------------------------------------- /sprites/liquids/acid-sulfuric.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/liquids/acid-sulfuric.png -------------------------------------------------------------------------------- /sprites/liquids/dirty-water.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/liquids/dirty-water.png -------------------------------------------------------------------------------- /sprites/shapes/arrow-trail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/shapes/arrow-trail.png -------------------------------------------------------------------------------- /sprites/shapes/attack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/shapes/attack.png -------------------------------------------------------------------------------- /sprites/shapes/bendn-le-grand-trail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/shapes/bendn-le-grand-trail.png -------------------------------------------------------------------------------- /sprites/shapes/copter-c-rocket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/shapes/copter-c-rocket.png -------------------------------------------------------------------------------- /sprites/shapes/diamond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/shapes/diamond.png -------------------------------------------------------------------------------- /sprites/shapes/electron-trail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/shapes/electron-trail.png -------------------------------------------------------------------------------- /sprites/shapes/heal-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/shapes/heal-small.png -------------------------------------------------------------------------------- /sprites/shapes/missle-back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/shapes/missle-back.png -------------------------------------------------------------------------------- /sprites/shapes/missle-raw-back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/shapes/missle-raw-back.png -------------------------------------------------------------------------------- /sprites/shapes/missle-raw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/shapes/missle-raw.png -------------------------------------------------------------------------------- /sprites/shapes/missle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/shapes/missle.png -------------------------------------------------------------------------------- /sprites/shapes/point-trail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/shapes/point-trail.png -------------------------------------------------------------------------------- /sprites/shapes/star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/shapes/star.png -------------------------------------------------------------------------------- /sprites/shapes/sulfur-cap-back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/shapes/sulfur-cap-back.png -------------------------------------------------------------------------------- /sprites/shapes/sulfur-cap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/shapes/sulfur-cap.png -------------------------------------------------------------------------------- /sprites/shapes/widerail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/shapes/widerail.png -------------------------------------------------------------------------------- /sprites/status/acid-sulfuric-melting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/status/acid-sulfuric-melting.png -------------------------------------------------------------------------------- /sprites/status/electrocuted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/status/electrocuted.png -------------------------------------------------------------------------------- /sprites/status/healing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/status/healing.png -------------------------------------------------------------------------------- /sprites/units/air/copter-a/copter-a-cell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/units/air/copter-a/copter-a-cell.png -------------------------------------------------------------------------------- /sprites/units/air/copter-a/copter-a-full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/units/air/copter-a/copter-a-full.png -------------------------------------------------------------------------------- /sprites/units/air/copter-a/copter-a-rotator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/units/air/copter-a/copter-a-rotator.png -------------------------------------------------------------------------------- /sprites/units/air/copter-a/copter-a-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/units/air/copter-a/copter-a-top.png -------------------------------------------------------------------------------- /sprites/units/air/copter-a/copter-a-weapon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/units/air/copter-a/copter-a-weapon.png -------------------------------------------------------------------------------- /sprites/units/air/copter-a/copter-a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/units/air/copter-a/copter-a.png -------------------------------------------------------------------------------- /sprites/units/air/copter-b/copter-b-cell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/units/air/copter-b/copter-b-cell.png -------------------------------------------------------------------------------- /sprites/units/air/copter-b/copter-b-full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/units/air/copter-b/copter-b-full.png -------------------------------------------------------------------------------- /sprites/units/air/copter-b/copter-b-guna.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/units/air/copter-b/copter-b-guna.png -------------------------------------------------------------------------------- /sprites/units/air/copter-b/copter-b-gunb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/units/air/copter-b/copter-b-gunb.png -------------------------------------------------------------------------------- /sprites/units/air/copter-b/copter-b-rotator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/units/air/copter-b/copter-b-rotator.png -------------------------------------------------------------------------------- /sprites/units/air/copter-b/copter-b-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/units/air/copter-b/copter-b-top.png -------------------------------------------------------------------------------- /sprites/units/air/copter-b/copter-b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/units/air/copter-b/copter-b.png -------------------------------------------------------------------------------- /sprites/units/air/copter-c/copter-c-cell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/units/air/copter-c/copter-c-cell.png -------------------------------------------------------------------------------- /sprites/units/air/copter-c/copter-c-full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/units/air/copter-c/copter-c-full.png -------------------------------------------------------------------------------- /sprites/units/air/copter-c/copter-c-gun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/units/air/copter-c/copter-c-gun.png -------------------------------------------------------------------------------- /sprites/units/air/copter-c/copter-c-rotator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/units/air/copter-c/copter-c-rotator.png -------------------------------------------------------------------------------- /sprites/units/air/copter-c/copter-c-rotatorb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/units/air/copter-c/copter-c-rotatorb.png -------------------------------------------------------------------------------- /sprites/units/air/copter-c/copter-c-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/units/air/copter-c/copter-c-top.png -------------------------------------------------------------------------------- /sprites/units/air/copter-c/copter-c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/units/air/copter-c/copter-c.png -------------------------------------------------------------------------------- /sprites/units/air/copter-d/copter-d-big-gun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/units/air/copter-d/copter-d-big-gun.png -------------------------------------------------------------------------------- /sprites/units/air/copter-d/copter-d-blade-a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/units/air/copter-d/copter-d-blade-a.png -------------------------------------------------------------------------------- /sprites/units/air/copter-d/copter-d-blade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/units/air/copter-d/copter-d-blade.png -------------------------------------------------------------------------------- /sprites/units/air/copter-d/copter-d-cell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/units/air/copter-d/copter-d-cell.png -------------------------------------------------------------------------------- /sprites/units/air/copter-d/copter-d-full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/units/air/copter-d/copter-d-full.png -------------------------------------------------------------------------------- /sprites/units/air/copter-d/copter-d-med-gun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/units/air/copter-d/copter-d-med-gun.png -------------------------------------------------------------------------------- /sprites/units/air/copter-d/copter-d-smol-gun-a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/units/air/copter-d/copter-d-smol-gun-a.png -------------------------------------------------------------------------------- /sprites/units/air/copter-d/copter-d-smol-gun-b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/units/air/copter-d/copter-d-smol-gun-b.png -------------------------------------------------------------------------------- /sprites/units/air/copter-d/copter-d-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/units/air/copter-d/copter-d-top.png -------------------------------------------------------------------------------- /sprites/units/air/copter-d/copter-d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/units/air/copter-d/copter-d.png -------------------------------------------------------------------------------- /sprites/units/air/copter-d/guns.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/units/air/copter-d/guns.png -------------------------------------------------------------------------------- /sprites/units/air/core-ii-unit-cell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/units/air/core-ii-unit-cell.png -------------------------------------------------------------------------------- /sprites/units/air/core-ii-unit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/units/air/core-ii-unit.png -------------------------------------------------------------------------------- /sprites/units/air/drone-cell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/units/air/drone-cell.png -------------------------------------------------------------------------------- /sprites/units/air/drone-rotor-outline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/units/air/drone-rotor-outline.png -------------------------------------------------------------------------------- /sprites/units/air/drone-rotor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/units/air/drone-rotor.png -------------------------------------------------------------------------------- /sprites/units/air/drone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/units/air/drone.png -------------------------------------------------------------------------------- /sprites/units/air/electron-cell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/units/air/electron-cell.png -------------------------------------------------------------------------------- /sprites/units/air/electron-full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/units/air/electron-full.png -------------------------------------------------------------------------------- /sprites/units/air/electron.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/units/air/electron.png -------------------------------------------------------------------------------- /sprites/units/air/electrons/electron-a-cell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/units/air/electrons/electron-a-cell.png -------------------------------------------------------------------------------- /sprites/units/air/electrons/electron-a-full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/units/air/electrons/electron-a-full.png -------------------------------------------------------------------------------- /sprites/units/air/electrons/electron-a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/units/air/electrons/electron-a.png -------------------------------------------------------------------------------- /sprites/units/air/electrons/electron-b-emp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/units/air/electrons/electron-b-emp.png -------------------------------------------------------------------------------- /sprites/units/air/electrons/electron-b-full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/units/air/electrons/electron-b-full.png -------------------------------------------------------------------------------- /sprites/units/air/electrons/electron-b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/units/air/electrons/electron-b.png -------------------------------------------------------------------------------- /sprites/units/air/electrons/electron-c-b-e-a-n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/units/air/electrons/electron-c-b-e-a-n.png -------------------------------------------------------------------------------- /sprites/units/air/electrons/electron-c-cell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/units/air/electrons/electron-c-cell.png -------------------------------------------------------------------------------- /sprites/units/air/electrons/electron-c-full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/units/air/electrons/electron-c-full.png -------------------------------------------------------------------------------- /sprites/units/air/electrons/electron-c-h-gun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/units/air/electrons/electron-c-h-gun.png -------------------------------------------------------------------------------- /sprites/units/air/electrons/electron-c-lance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/units/air/electrons/electron-c-lance.png -------------------------------------------------------------------------------- /sprites/units/air/electrons/electron-c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/units/air/electrons/electron-c.png -------------------------------------------------------------------------------- /sprites/units/air/electrons/electron-d-artillery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/units/air/electrons/electron-d-artillery.png -------------------------------------------------------------------------------- /sprites/units/air/electrons/electron-d-cell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/units/air/electrons/electron-d-cell.png -------------------------------------------------------------------------------- /sprites/units/air/electrons/electron-d-full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/units/air/electrons/electron-d-full.png -------------------------------------------------------------------------------- /sprites/units/air/electrons/electron-d-lance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/units/air/electrons/electron-d-lance.png -------------------------------------------------------------------------------- /sprites/units/air/electrons/electron-d-sapper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/units/air/electrons/electron-d-sapper.png -------------------------------------------------------------------------------- /sprites/units/air/electrons/electron-d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/units/air/electrons/electron-d.png -------------------------------------------------------------------------------- /sprites/units/air/gamma-nt-cell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/units/air/gamma-nt-cell.png -------------------------------------------------------------------------------- /sprites/units/air/gamma-nt-full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/units/air/gamma-nt-full.png -------------------------------------------------------------------------------- /sprites/units/air/gamma-nt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/units/air/gamma-nt.png -------------------------------------------------------------------------------- /sprites/units/air/repairer-cell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/units/air/repairer-cell.png -------------------------------------------------------------------------------- /sprites/units/air/repairer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/units/air/repairer.png -------------------------------------------------------------------------------- /sprites/units/air/поли/пистолет.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/units/air/поли/пистолет.png -------------------------------------------------------------------------------- /sprites/units/air/поли/поли-cell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/units/air/поли/поли-cell.png -------------------------------------------------------------------------------- /sprites/units/air/поли/поли-full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/units/air/поли/поли-full.png -------------------------------------------------------------------------------- /sprites/units/air/поли/поли-небольшой-пистолет.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/units/air/поли/поли-небольшой-пистолет.png -------------------------------------------------------------------------------- /sprites/units/air/поли/поли-пистолет.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/units/air/поли/поли-пистолет.png -------------------------------------------------------------------------------- /sprites/units/air/поли/поли.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/units/air/поли/поли.png -------------------------------------------------------------------------------- /sprites/units/air/ᛗᛖᚷᚨ/ᚷᚢᚾᛋ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/units/air/ᛗᛖᚷᚨ/ᚷᚢᚾᛋ.png -------------------------------------------------------------------------------- /sprites/units/air/ᛗᛖᚷᚨ/ᛗᛖᚷᚨ-cell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/units/air/ᛗᛖᚷᚨ/ᛗᛖᚷᚨ-cell.png -------------------------------------------------------------------------------- /sprites/units/air/ᛗᛖᚷᚨ/ᛗᛖᚷᚨ-full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/units/air/ᛗᛖᚷᚨ/ᛗᛖᚷᚨ-full.png -------------------------------------------------------------------------------- /sprites/units/air/ᛗᛖᚷᚨ/ᛗᛖᚷᚨ-ᛋᛗᚨᛚᛚ-ᚷᚢᚾ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/units/air/ᛗᛖᚷᚨ/ᛗᛖᚷᚨ-ᛋᛗᚨᛚᛚ-ᚷᚢᚾ.png -------------------------------------------------------------------------------- /sprites/units/air/ᛗᛖᚷᚨ/ᛗᛖᚷᚨ-ᛒᛁᚷ-ᚷᚢᚾ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/units/air/ᛗᛖᚷᚨ/ᛗᛖᚷᚨ-ᛒᛁᚷ-ᚷᚢᚾ.png -------------------------------------------------------------------------------- /sprites/units/air/ᛗᛖᚷᚨ/ᛗᛖᚷᚨ-ᛗᛖᛞᛁᚢᛗ-ᚷᚢᚾ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/units/air/ᛗᛖᚷᚨ/ᛗᛖᚷᚨ-ᛗᛖᛞᛁᚢᛗ-ᚷᚢᚾ.png -------------------------------------------------------------------------------- /sprites/units/air/ᛗᛖᚷᚨ/ᛗᛖᚷᚨ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/units/air/ᛗᛖᚷᚨ/ᛗᛖᚷᚨ.png -------------------------------------------------------------------------------- /sprites/units/attacker/daybreak-cell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/units/attacker/daybreak-cell.png -------------------------------------------------------------------------------- /sprites/units/attacker/daybreak.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/units/attacker/daybreak.png -------------------------------------------------------------------------------- /sprites/units/attacker/flame-cell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/units/attacker/flame-cell.png -------------------------------------------------------------------------------- /sprites/units/attacker/flame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/units/attacker/flame.png -------------------------------------------------------------------------------- /sprites/units/attacker/rissa-cell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/units/attacker/rissa-cell.png -------------------------------------------------------------------------------- /sprites/units/attacker/rissa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/units/attacker/rissa.png -------------------------------------------------------------------------------- /sprites/units/supporter/advanced-miner-cell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/units/supporter/advanced-miner-cell.png -------------------------------------------------------------------------------- /sprites/units/supporter/advanced-miner-healer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/units/supporter/advanced-miner-healer.png -------------------------------------------------------------------------------- /sprites/units/supporter/advanced-miner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/units/supporter/advanced-miner.png -------------------------------------------------------------------------------- /sprites/units/supporter/bendn-le-grand-cell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/units/supporter/bendn-le-grand-cell.png -------------------------------------------------------------------------------- /sprites/units/supporter/bendn-le-grand-full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/units/supporter/bendn-le-grand-full.png -------------------------------------------------------------------------------- /sprites/units/supporter/bendn-le-grand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/units/supporter/bendn-le-grand.png -------------------------------------------------------------------------------- /sprites/units/supporter/quin-cell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/units/supporter/quin-cell.png -------------------------------------------------------------------------------- /sprites/units/supporter/quin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/units/supporter/quin.png -------------------------------------------------------------------------------- /sprites/units/weapons/bendn-le-grand-pistolet-qu'il-a-utilisé-pour-me-tuer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/units/weapons/bendn-le-grand-pistolet-qu'il-a-utilisé-pour-me-tuer.png -------------------------------------------------------------------------------- /sprites/units/weapons/core-point-defense-mount.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/units/weapons/core-point-defense-mount.png -------------------------------------------------------------------------------- /sprites/units/weapons/rissa-missiles-mount.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/units/weapons/rissa-missiles-mount.png -------------------------------------------------------------------------------- /sprites/units/weapons/rissa-rail-gun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eclipse-04/Project-Scrap/cadb4452a33e7c6c2e489430b35d1451cfbe74ff/sprites/units/weapons/rissa-rail-gun.png --------------------------------------------------------------------------------