├── README.md ├── bundles └── bundle_ru.properties ├── content ├── blocks │ ├── chaos-array-factory.json │ ├── chip-maker.json │ ├── deep-digger.json │ ├── gold-forge.json │ ├── gold-sand.json │ ├── hyperlaser.hjson │ ├── laser-mech-pad.json │ ├── lich-factory.json │ ├── metacannon.json │ ├── micro-conveyor.json │ ├── ore-condenser.json │ ├── ore-crusher.json │ ├── ore-interdimensional.json │ ├── overcharge.json │ ├── quantum-drill.json │ ├── quantum-gatherer.json │ ├── quantum-mech-pad.json │ ├── quantum-mender.json │ ├── quantum-ore-condenser.json │ ├── quantum-ore-crusher.json │ ├── quantum-phase-wall.json │ ├── quantum-vault.json │ ├── quantum-weaver.json │ ├── repair-laser.json │ ├── revenant-command.json │ ├── silver-plating.json │ ├── tesla.json │ └── yggdrasil.hjson ├── items │ ├── gold-powder.json │ ├── micro-chip.json │ ├── pure-gold.json │ ├── quantum-particles.json │ ├── quantum-phase.json │ └── raw-ore.json ├── liquids │ ├── ore-slag.json │ └── quantum-ore-slag.json ├── mechs │ ├── laser-mech.json │ └── quantum-mech.json ├── units │ └── chrome-wraith.json └── zones │ ├── 4321hope.hjson │ └── OpenPlains.hjson ├── maps ├── 4321hope.msav └── OpenPlains.msav ├── mod.json ├── scripts ├── bases.js ├── blocks │ ├── Overcharge.js │ ├── custom-laser-template.js │ └── idklol.txt └── main.js ├── sounds └── swings.ogg ├── sprites-override └── blocks │ └── turrets │ └── bases │ └── block-5.png └── sprites ├── Zones ├── 4321hope-zone.png └── OpenPlains-zone.png ├── blocks ├── The-End-Is-Nigh-block-5.png ├── chip-maker-top.png ├── chip-maker.png ├── conveyors │ ├── micro-conveyor-0-0.png │ ├── micro-conveyor-0-1.png │ ├── micro-conveyor-0-2.png │ ├── micro-conveyor-0-3.png │ ├── micro-conveyor-1-0.png │ ├── micro-conveyor-1-1.png │ ├── micro-conveyor-1-2.png │ ├── micro-conveyor-1-3.png │ ├── micro-conveyor-2-0.png │ ├── micro-conveyor-2-1.png │ ├── micro-conveyor-2-2.png │ ├── micro-conveyor-2-3.png │ ├── micro-conveyor-3-0.png │ ├── micro-conveyor-3-1.png │ ├── micro-conveyor-3-2.png │ ├── micro-conveyor-3-3.png │ ├── micro-conveyor-4-0.png │ ├── micro-conveyor-4-1.png │ ├── micro-conveyor-4-2.png │ ├── micro-conveyor-4-3.png │ └── micro-conveyor.png ├── drills │ ├── deep-digger-liquid.png │ ├── deep-digger-rotator.png │ ├── deep-digger-top.png │ ├── deep-digger.png │ ├── quantum-drill-rim.png │ ├── quantum-drill-rotator.png │ ├── quantum-drill-top.png │ └── quantum-drill.png ├── environment │ ├── gold-sand1.png │ ├── gold-sand2.png │ └── gold-sand3.png ├── gold-forge-top.png ├── gold-forge.png ├── ore-condenser-liquid.png ├── ore-condenser.png ├── ore-crusher.png ├── quantum-gatherer-top.png ├── quantum-gatherer.png ├── quantum-mender.png ├── quantum-ore-condenser.png ├── quantum-ore-crusher.png ├── quantum-phase-wall.png ├── quantum-vault.png ├── quantum-weaver-top.png ├── quantum-weaver.png ├── scrap-wall-huge1.png ├── silver-crucible.png ├── silver-wall.png ├── turrets │ ├── hyperlaser-base.png │ ├── hyperlaser.png │ ├── metacannon.png │ ├── overcharge.png │ ├── repair-laser-base.png │ ├── repair-laser.png │ ├── tesla.png │ ├── yggdrasil-heat.png │ ├── yggdrasil-icon-base.png │ ├── yggdrasil-icon.png │ └── yggdrasil.png └── units │ ├── chaos-array-factory-top.png │ ├── chaos-array-factory.png │ ├── chrome-wraith-factory-top.png │ ├── chrome-wraith-factory.png │ ├── laser-mech-pad.png │ ├── lich-factory-top.png │ ├── lich-factory.png │ ├── quantum-mech-pad.png │ ├── revenant-command-top.png │ └── revenant-command.png ├── items ├── gold-powder.png ├── micro-chip.png ├── ore-slag.png ├── pure-gold.png ├── quantum-ore-slag.png ├── quantum-particles.png ├── quantum-phase.png └── raw-ore.png ├── mechs ├── laser-mech-base.png ├── laser-mech-leg.png ├── laser-mech.png └── quantum-mech.png └── units ├── chrome-blaster.png └── chrome-wraith.png /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBestBot/The-End-Is-Nigh/HEAD/README.md -------------------------------------------------------------------------------- /bundles/bundle_ru.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBestBot/The-End-Is-Nigh/HEAD/bundles/bundle_ru.properties -------------------------------------------------------------------------------- /content/blocks/chaos-array-factory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBestBot/The-End-Is-Nigh/HEAD/content/blocks/chaos-array-factory.json -------------------------------------------------------------------------------- /content/blocks/chip-maker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBestBot/The-End-Is-Nigh/HEAD/content/blocks/chip-maker.json -------------------------------------------------------------------------------- /content/blocks/deep-digger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBestBot/The-End-Is-Nigh/HEAD/content/blocks/deep-digger.json -------------------------------------------------------------------------------- /content/blocks/gold-forge.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBestBot/The-End-Is-Nigh/HEAD/content/blocks/gold-forge.json -------------------------------------------------------------------------------- /content/blocks/gold-sand.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBestBot/The-End-Is-Nigh/HEAD/content/blocks/gold-sand.json -------------------------------------------------------------------------------- /content/blocks/hyperlaser.hjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBestBot/The-End-Is-Nigh/HEAD/content/blocks/hyperlaser.hjson -------------------------------------------------------------------------------- /content/blocks/laser-mech-pad.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBestBot/The-End-Is-Nigh/HEAD/content/blocks/laser-mech-pad.json -------------------------------------------------------------------------------- /content/blocks/lich-factory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBestBot/The-End-Is-Nigh/HEAD/content/blocks/lich-factory.json -------------------------------------------------------------------------------- /content/blocks/metacannon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBestBot/The-End-Is-Nigh/HEAD/content/blocks/metacannon.json -------------------------------------------------------------------------------- /content/blocks/micro-conveyor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBestBot/The-End-Is-Nigh/HEAD/content/blocks/micro-conveyor.json -------------------------------------------------------------------------------- /content/blocks/ore-condenser.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBestBot/The-End-Is-Nigh/HEAD/content/blocks/ore-condenser.json -------------------------------------------------------------------------------- /content/blocks/ore-crusher.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBestBot/The-End-Is-Nigh/HEAD/content/blocks/ore-crusher.json -------------------------------------------------------------------------------- /content/blocks/ore-interdimensional.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBestBot/The-End-Is-Nigh/HEAD/content/blocks/ore-interdimensional.json -------------------------------------------------------------------------------- /content/blocks/overcharge.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBestBot/The-End-Is-Nigh/HEAD/content/blocks/overcharge.json -------------------------------------------------------------------------------- /content/blocks/quantum-drill.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBestBot/The-End-Is-Nigh/HEAD/content/blocks/quantum-drill.json -------------------------------------------------------------------------------- /content/blocks/quantum-gatherer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBestBot/The-End-Is-Nigh/HEAD/content/blocks/quantum-gatherer.json -------------------------------------------------------------------------------- /content/blocks/quantum-mech-pad.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBestBot/The-End-Is-Nigh/HEAD/content/blocks/quantum-mech-pad.json -------------------------------------------------------------------------------- /content/blocks/quantum-mender.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBestBot/The-End-Is-Nigh/HEAD/content/blocks/quantum-mender.json -------------------------------------------------------------------------------- /content/blocks/quantum-ore-condenser.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBestBot/The-End-Is-Nigh/HEAD/content/blocks/quantum-ore-condenser.json -------------------------------------------------------------------------------- /content/blocks/quantum-ore-crusher.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBestBot/The-End-Is-Nigh/HEAD/content/blocks/quantum-ore-crusher.json -------------------------------------------------------------------------------- /content/blocks/quantum-phase-wall.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBestBot/The-End-Is-Nigh/HEAD/content/blocks/quantum-phase-wall.json -------------------------------------------------------------------------------- /content/blocks/quantum-vault.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBestBot/The-End-Is-Nigh/HEAD/content/blocks/quantum-vault.json -------------------------------------------------------------------------------- /content/blocks/quantum-weaver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBestBot/The-End-Is-Nigh/HEAD/content/blocks/quantum-weaver.json -------------------------------------------------------------------------------- /content/blocks/repair-laser.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBestBot/The-End-Is-Nigh/HEAD/content/blocks/repair-laser.json -------------------------------------------------------------------------------- /content/blocks/revenant-command.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBestBot/The-End-Is-Nigh/HEAD/content/blocks/revenant-command.json -------------------------------------------------------------------------------- /content/blocks/silver-plating.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBestBot/The-End-Is-Nigh/HEAD/content/blocks/silver-plating.json -------------------------------------------------------------------------------- /content/blocks/tesla.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBestBot/The-End-Is-Nigh/HEAD/content/blocks/tesla.json -------------------------------------------------------------------------------- /content/blocks/yggdrasil.hjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBestBot/The-End-Is-Nigh/HEAD/content/blocks/yggdrasil.hjson -------------------------------------------------------------------------------- /content/items/gold-powder.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBestBot/The-End-Is-Nigh/HEAD/content/items/gold-powder.json -------------------------------------------------------------------------------- /content/items/micro-chip.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBestBot/The-End-Is-Nigh/HEAD/content/items/micro-chip.json -------------------------------------------------------------------------------- /content/items/pure-gold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBestBot/The-End-Is-Nigh/HEAD/content/items/pure-gold.json -------------------------------------------------------------------------------- /content/items/quantum-particles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBestBot/The-End-Is-Nigh/HEAD/content/items/quantum-particles.json -------------------------------------------------------------------------------- /content/items/quantum-phase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBestBot/The-End-Is-Nigh/HEAD/content/items/quantum-phase.json -------------------------------------------------------------------------------- /content/items/raw-ore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBestBot/The-End-Is-Nigh/HEAD/content/items/raw-ore.json -------------------------------------------------------------------------------- /content/liquids/ore-slag.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBestBot/The-End-Is-Nigh/HEAD/content/liquids/ore-slag.json -------------------------------------------------------------------------------- /content/liquids/quantum-ore-slag.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBestBot/The-End-Is-Nigh/HEAD/content/liquids/quantum-ore-slag.json -------------------------------------------------------------------------------- /content/mechs/laser-mech.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBestBot/The-End-Is-Nigh/HEAD/content/mechs/laser-mech.json -------------------------------------------------------------------------------- /content/mechs/quantum-mech.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBestBot/The-End-Is-Nigh/HEAD/content/mechs/quantum-mech.json -------------------------------------------------------------------------------- /content/units/chrome-wraith.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBestBot/The-End-Is-Nigh/HEAD/content/units/chrome-wraith.json -------------------------------------------------------------------------------- /content/zones/4321hope.hjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBestBot/The-End-Is-Nigh/HEAD/content/zones/4321hope.hjson -------------------------------------------------------------------------------- /content/zones/OpenPlains.hjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBestBot/The-End-Is-Nigh/HEAD/content/zones/OpenPlains.hjson -------------------------------------------------------------------------------- /maps/4321hope.msav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBestBot/The-End-Is-Nigh/HEAD/maps/4321hope.msav -------------------------------------------------------------------------------- /maps/OpenPlains.msav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBestBot/The-End-Is-Nigh/HEAD/maps/OpenPlains.msav -------------------------------------------------------------------------------- /mod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBestBot/The-End-Is-Nigh/HEAD/mod.json -------------------------------------------------------------------------------- /scripts/bases.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBestBot/The-End-Is-Nigh/HEAD/scripts/bases.js -------------------------------------------------------------------------------- /scripts/blocks/Overcharge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBestBot/The-End-Is-Nigh/HEAD/scripts/blocks/Overcharge.js -------------------------------------------------------------------------------- /scripts/blocks/custom-laser-template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBestBot/The-End-Is-Nigh/HEAD/scripts/blocks/custom-laser-template.js -------------------------------------------------------------------------------- /scripts/blocks/idklol.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBestBot/The-End-Is-Nigh/HEAD/scripts/blocks/idklol.txt -------------------------------------------------------------------------------- /scripts/main.js: -------------------------------------------------------------------------------- 1 | require("blocks/custom-laser-template") -------------------------------------------------------------------------------- /sounds/swings.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBestBot/The-End-Is-Nigh/HEAD/sounds/swings.ogg -------------------------------------------------------------------------------- /sprites-override/blocks/turrets/bases/block-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBestBot/The-End-Is-Nigh/HEAD/sprites-override/blocks/turrets/bases/block-5.png -------------------------------------------------------------------------------- /sprites/Zones/4321hope-zone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBestBot/The-End-Is-Nigh/HEAD/sprites/Zones/4321hope-zone.png -------------------------------------------------------------------------------- /sprites/Zones/OpenPlains-zone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBestBot/The-End-Is-Nigh/HEAD/sprites/Zones/OpenPlains-zone.png -------------------------------------------------------------------------------- /sprites/blocks/The-End-Is-Nigh-block-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBestBot/The-End-Is-Nigh/HEAD/sprites/blocks/The-End-Is-Nigh-block-5.png -------------------------------------------------------------------------------- /sprites/blocks/chip-maker-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBestBot/The-End-Is-Nigh/HEAD/sprites/blocks/chip-maker-top.png -------------------------------------------------------------------------------- /sprites/blocks/chip-maker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBestBot/The-End-Is-Nigh/HEAD/sprites/blocks/chip-maker.png -------------------------------------------------------------------------------- /sprites/blocks/conveyors/micro-conveyor-0-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBestBot/The-End-Is-Nigh/HEAD/sprites/blocks/conveyors/micro-conveyor-0-0.png -------------------------------------------------------------------------------- /sprites/blocks/conveyors/micro-conveyor-0-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBestBot/The-End-Is-Nigh/HEAD/sprites/blocks/conveyors/micro-conveyor-0-1.png -------------------------------------------------------------------------------- /sprites/blocks/conveyors/micro-conveyor-0-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBestBot/The-End-Is-Nigh/HEAD/sprites/blocks/conveyors/micro-conveyor-0-2.png -------------------------------------------------------------------------------- /sprites/blocks/conveyors/micro-conveyor-0-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBestBot/The-End-Is-Nigh/HEAD/sprites/blocks/conveyors/micro-conveyor-0-3.png -------------------------------------------------------------------------------- /sprites/blocks/conveyors/micro-conveyor-1-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBestBot/The-End-Is-Nigh/HEAD/sprites/blocks/conveyors/micro-conveyor-1-0.png -------------------------------------------------------------------------------- /sprites/blocks/conveyors/micro-conveyor-1-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBestBot/The-End-Is-Nigh/HEAD/sprites/blocks/conveyors/micro-conveyor-1-1.png -------------------------------------------------------------------------------- /sprites/blocks/conveyors/micro-conveyor-1-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBestBot/The-End-Is-Nigh/HEAD/sprites/blocks/conveyors/micro-conveyor-1-2.png -------------------------------------------------------------------------------- /sprites/blocks/conveyors/micro-conveyor-1-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBestBot/The-End-Is-Nigh/HEAD/sprites/blocks/conveyors/micro-conveyor-1-3.png -------------------------------------------------------------------------------- /sprites/blocks/conveyors/micro-conveyor-2-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBestBot/The-End-Is-Nigh/HEAD/sprites/blocks/conveyors/micro-conveyor-2-0.png -------------------------------------------------------------------------------- /sprites/blocks/conveyors/micro-conveyor-2-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBestBot/The-End-Is-Nigh/HEAD/sprites/blocks/conveyors/micro-conveyor-2-1.png -------------------------------------------------------------------------------- /sprites/blocks/conveyors/micro-conveyor-2-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBestBot/The-End-Is-Nigh/HEAD/sprites/blocks/conveyors/micro-conveyor-2-2.png -------------------------------------------------------------------------------- /sprites/blocks/conveyors/micro-conveyor-2-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBestBot/The-End-Is-Nigh/HEAD/sprites/blocks/conveyors/micro-conveyor-2-3.png -------------------------------------------------------------------------------- /sprites/blocks/conveyors/micro-conveyor-3-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBestBot/The-End-Is-Nigh/HEAD/sprites/blocks/conveyors/micro-conveyor-3-0.png -------------------------------------------------------------------------------- /sprites/blocks/conveyors/micro-conveyor-3-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBestBot/The-End-Is-Nigh/HEAD/sprites/blocks/conveyors/micro-conveyor-3-1.png -------------------------------------------------------------------------------- /sprites/blocks/conveyors/micro-conveyor-3-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBestBot/The-End-Is-Nigh/HEAD/sprites/blocks/conveyors/micro-conveyor-3-2.png -------------------------------------------------------------------------------- /sprites/blocks/conveyors/micro-conveyor-3-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBestBot/The-End-Is-Nigh/HEAD/sprites/blocks/conveyors/micro-conveyor-3-3.png -------------------------------------------------------------------------------- /sprites/blocks/conveyors/micro-conveyor-4-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBestBot/The-End-Is-Nigh/HEAD/sprites/blocks/conveyors/micro-conveyor-4-0.png -------------------------------------------------------------------------------- /sprites/blocks/conveyors/micro-conveyor-4-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBestBot/The-End-Is-Nigh/HEAD/sprites/blocks/conveyors/micro-conveyor-4-1.png -------------------------------------------------------------------------------- /sprites/blocks/conveyors/micro-conveyor-4-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBestBot/The-End-Is-Nigh/HEAD/sprites/blocks/conveyors/micro-conveyor-4-2.png -------------------------------------------------------------------------------- /sprites/blocks/conveyors/micro-conveyor-4-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBestBot/The-End-Is-Nigh/HEAD/sprites/blocks/conveyors/micro-conveyor-4-3.png -------------------------------------------------------------------------------- /sprites/blocks/conveyors/micro-conveyor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBestBot/The-End-Is-Nigh/HEAD/sprites/blocks/conveyors/micro-conveyor.png -------------------------------------------------------------------------------- /sprites/blocks/drills/deep-digger-liquid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBestBot/The-End-Is-Nigh/HEAD/sprites/blocks/drills/deep-digger-liquid.png -------------------------------------------------------------------------------- /sprites/blocks/drills/deep-digger-rotator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBestBot/The-End-Is-Nigh/HEAD/sprites/blocks/drills/deep-digger-rotator.png -------------------------------------------------------------------------------- /sprites/blocks/drills/deep-digger-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBestBot/The-End-Is-Nigh/HEAD/sprites/blocks/drills/deep-digger-top.png -------------------------------------------------------------------------------- /sprites/blocks/drills/deep-digger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBestBot/The-End-Is-Nigh/HEAD/sprites/blocks/drills/deep-digger.png -------------------------------------------------------------------------------- /sprites/blocks/drills/quantum-drill-rim.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBestBot/The-End-Is-Nigh/HEAD/sprites/blocks/drills/quantum-drill-rim.png -------------------------------------------------------------------------------- /sprites/blocks/drills/quantum-drill-rotator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBestBot/The-End-Is-Nigh/HEAD/sprites/blocks/drills/quantum-drill-rotator.png -------------------------------------------------------------------------------- /sprites/blocks/drills/quantum-drill-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBestBot/The-End-Is-Nigh/HEAD/sprites/blocks/drills/quantum-drill-top.png -------------------------------------------------------------------------------- /sprites/blocks/drills/quantum-drill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBestBot/The-End-Is-Nigh/HEAD/sprites/blocks/drills/quantum-drill.png -------------------------------------------------------------------------------- /sprites/blocks/environment/gold-sand1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBestBot/The-End-Is-Nigh/HEAD/sprites/blocks/environment/gold-sand1.png -------------------------------------------------------------------------------- /sprites/blocks/environment/gold-sand2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBestBot/The-End-Is-Nigh/HEAD/sprites/blocks/environment/gold-sand2.png -------------------------------------------------------------------------------- /sprites/blocks/environment/gold-sand3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBestBot/The-End-Is-Nigh/HEAD/sprites/blocks/environment/gold-sand3.png -------------------------------------------------------------------------------- /sprites/blocks/gold-forge-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBestBot/The-End-Is-Nigh/HEAD/sprites/blocks/gold-forge-top.png -------------------------------------------------------------------------------- /sprites/blocks/gold-forge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBestBot/The-End-Is-Nigh/HEAD/sprites/blocks/gold-forge.png -------------------------------------------------------------------------------- /sprites/blocks/ore-condenser-liquid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBestBot/The-End-Is-Nigh/HEAD/sprites/blocks/ore-condenser-liquid.png -------------------------------------------------------------------------------- /sprites/blocks/ore-condenser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBestBot/The-End-Is-Nigh/HEAD/sprites/blocks/ore-condenser.png -------------------------------------------------------------------------------- /sprites/blocks/ore-crusher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBestBot/The-End-Is-Nigh/HEAD/sprites/blocks/ore-crusher.png -------------------------------------------------------------------------------- /sprites/blocks/quantum-gatherer-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBestBot/The-End-Is-Nigh/HEAD/sprites/blocks/quantum-gatherer-top.png -------------------------------------------------------------------------------- /sprites/blocks/quantum-gatherer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBestBot/The-End-Is-Nigh/HEAD/sprites/blocks/quantum-gatherer.png -------------------------------------------------------------------------------- /sprites/blocks/quantum-mender.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBestBot/The-End-Is-Nigh/HEAD/sprites/blocks/quantum-mender.png -------------------------------------------------------------------------------- /sprites/blocks/quantum-ore-condenser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBestBot/The-End-Is-Nigh/HEAD/sprites/blocks/quantum-ore-condenser.png -------------------------------------------------------------------------------- /sprites/blocks/quantum-ore-crusher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBestBot/The-End-Is-Nigh/HEAD/sprites/blocks/quantum-ore-crusher.png -------------------------------------------------------------------------------- /sprites/blocks/quantum-phase-wall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBestBot/The-End-Is-Nigh/HEAD/sprites/blocks/quantum-phase-wall.png -------------------------------------------------------------------------------- /sprites/blocks/quantum-vault.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBestBot/The-End-Is-Nigh/HEAD/sprites/blocks/quantum-vault.png -------------------------------------------------------------------------------- /sprites/blocks/quantum-weaver-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBestBot/The-End-Is-Nigh/HEAD/sprites/blocks/quantum-weaver-top.png -------------------------------------------------------------------------------- /sprites/blocks/quantum-weaver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBestBot/The-End-Is-Nigh/HEAD/sprites/blocks/quantum-weaver.png -------------------------------------------------------------------------------- /sprites/blocks/scrap-wall-huge1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBestBot/The-End-Is-Nigh/HEAD/sprites/blocks/scrap-wall-huge1.png -------------------------------------------------------------------------------- /sprites/blocks/silver-crucible.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBestBot/The-End-Is-Nigh/HEAD/sprites/blocks/silver-crucible.png -------------------------------------------------------------------------------- /sprites/blocks/silver-wall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBestBot/The-End-Is-Nigh/HEAD/sprites/blocks/silver-wall.png -------------------------------------------------------------------------------- /sprites/blocks/turrets/hyperlaser-base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBestBot/The-End-Is-Nigh/HEAD/sprites/blocks/turrets/hyperlaser-base.png -------------------------------------------------------------------------------- /sprites/blocks/turrets/hyperlaser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBestBot/The-End-Is-Nigh/HEAD/sprites/blocks/turrets/hyperlaser.png -------------------------------------------------------------------------------- /sprites/blocks/turrets/metacannon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBestBot/The-End-Is-Nigh/HEAD/sprites/blocks/turrets/metacannon.png -------------------------------------------------------------------------------- /sprites/blocks/turrets/overcharge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBestBot/The-End-Is-Nigh/HEAD/sprites/blocks/turrets/overcharge.png -------------------------------------------------------------------------------- /sprites/blocks/turrets/repair-laser-base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBestBot/The-End-Is-Nigh/HEAD/sprites/blocks/turrets/repair-laser-base.png -------------------------------------------------------------------------------- /sprites/blocks/turrets/repair-laser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBestBot/The-End-Is-Nigh/HEAD/sprites/blocks/turrets/repair-laser.png -------------------------------------------------------------------------------- /sprites/blocks/turrets/tesla.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBestBot/The-End-Is-Nigh/HEAD/sprites/blocks/turrets/tesla.png -------------------------------------------------------------------------------- /sprites/blocks/turrets/yggdrasil-heat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBestBot/The-End-Is-Nigh/HEAD/sprites/blocks/turrets/yggdrasil-heat.png -------------------------------------------------------------------------------- /sprites/blocks/turrets/yggdrasil-icon-base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBestBot/The-End-Is-Nigh/HEAD/sprites/blocks/turrets/yggdrasil-icon-base.png -------------------------------------------------------------------------------- /sprites/blocks/turrets/yggdrasil-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBestBot/The-End-Is-Nigh/HEAD/sprites/blocks/turrets/yggdrasil-icon.png -------------------------------------------------------------------------------- /sprites/blocks/turrets/yggdrasil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBestBot/The-End-Is-Nigh/HEAD/sprites/blocks/turrets/yggdrasil.png -------------------------------------------------------------------------------- /sprites/blocks/units/chaos-array-factory-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBestBot/The-End-Is-Nigh/HEAD/sprites/blocks/units/chaos-array-factory-top.png -------------------------------------------------------------------------------- /sprites/blocks/units/chaos-array-factory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBestBot/The-End-Is-Nigh/HEAD/sprites/blocks/units/chaos-array-factory.png -------------------------------------------------------------------------------- /sprites/blocks/units/chrome-wraith-factory-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBestBot/The-End-Is-Nigh/HEAD/sprites/blocks/units/chrome-wraith-factory-top.png -------------------------------------------------------------------------------- /sprites/blocks/units/chrome-wraith-factory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBestBot/The-End-Is-Nigh/HEAD/sprites/blocks/units/chrome-wraith-factory.png -------------------------------------------------------------------------------- /sprites/blocks/units/laser-mech-pad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBestBot/The-End-Is-Nigh/HEAD/sprites/blocks/units/laser-mech-pad.png -------------------------------------------------------------------------------- /sprites/blocks/units/lich-factory-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBestBot/The-End-Is-Nigh/HEAD/sprites/blocks/units/lich-factory-top.png -------------------------------------------------------------------------------- /sprites/blocks/units/lich-factory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBestBot/The-End-Is-Nigh/HEAD/sprites/blocks/units/lich-factory.png -------------------------------------------------------------------------------- /sprites/blocks/units/quantum-mech-pad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBestBot/The-End-Is-Nigh/HEAD/sprites/blocks/units/quantum-mech-pad.png -------------------------------------------------------------------------------- /sprites/blocks/units/revenant-command-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBestBot/The-End-Is-Nigh/HEAD/sprites/blocks/units/revenant-command-top.png -------------------------------------------------------------------------------- /sprites/blocks/units/revenant-command.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBestBot/The-End-Is-Nigh/HEAD/sprites/blocks/units/revenant-command.png -------------------------------------------------------------------------------- /sprites/items/gold-powder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBestBot/The-End-Is-Nigh/HEAD/sprites/items/gold-powder.png -------------------------------------------------------------------------------- /sprites/items/micro-chip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBestBot/The-End-Is-Nigh/HEAD/sprites/items/micro-chip.png -------------------------------------------------------------------------------- /sprites/items/ore-slag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBestBot/The-End-Is-Nigh/HEAD/sprites/items/ore-slag.png -------------------------------------------------------------------------------- /sprites/items/pure-gold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBestBot/The-End-Is-Nigh/HEAD/sprites/items/pure-gold.png -------------------------------------------------------------------------------- /sprites/items/quantum-ore-slag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBestBot/The-End-Is-Nigh/HEAD/sprites/items/quantum-ore-slag.png -------------------------------------------------------------------------------- /sprites/items/quantum-particles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBestBot/The-End-Is-Nigh/HEAD/sprites/items/quantum-particles.png -------------------------------------------------------------------------------- /sprites/items/quantum-phase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBestBot/The-End-Is-Nigh/HEAD/sprites/items/quantum-phase.png -------------------------------------------------------------------------------- /sprites/items/raw-ore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBestBot/The-End-Is-Nigh/HEAD/sprites/items/raw-ore.png -------------------------------------------------------------------------------- /sprites/mechs/laser-mech-base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBestBot/The-End-Is-Nigh/HEAD/sprites/mechs/laser-mech-base.png -------------------------------------------------------------------------------- /sprites/mechs/laser-mech-leg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBestBot/The-End-Is-Nigh/HEAD/sprites/mechs/laser-mech-leg.png -------------------------------------------------------------------------------- /sprites/mechs/laser-mech.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBestBot/The-End-Is-Nigh/HEAD/sprites/mechs/laser-mech.png -------------------------------------------------------------------------------- /sprites/mechs/quantum-mech.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBestBot/The-End-Is-Nigh/HEAD/sprites/mechs/quantum-mech.png -------------------------------------------------------------------------------- /sprites/units/chrome-blaster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBestBot/The-End-Is-Nigh/HEAD/sprites/units/chrome-blaster.png -------------------------------------------------------------------------------- /sprites/units/chrome-wraith.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBestBot/The-End-Is-Nigh/HEAD/sprites/units/chrome-wraith.png --------------------------------------------------------------------------------