├── .idea ├── modules.xml ├── pyra-erekir.iml ├── vcs.xml └── workspace.xml ├── LICENSE ├── README.md ├── content ├── blocks │ ├── core │ │ ├── baratrous.json │ │ └── regis.json │ ├── defence │ │ ├── pyra-door.json │ │ ├── pyra-wall-small.json │ │ └── pyra-wall.json │ ├── distribution │ │ ├── pyra-conveyor.json │ │ └── pyra-highway.json │ ├── drills │ │ ├── large-pyra-drill.json │ │ ├── pyra-drill.json │ │ └── small-pyra-drill.json │ ├── effect │ │ └── pyra-overdrive.json │ ├── logic │ │ └── pyra-processor.json │ ├── power │ │ ├── large-pyra-panel.json │ │ ├── pyra-battery.json │ │ ├── pyra-panel.json │ │ ├── pyra-tower.json │ │ ├── pyratite-reactor.json │ │ └── pyratite-steam.json │ ├── production │ │ ├── ai-core-fabricator.json │ │ ├── crusher.json │ │ ├── magmium-forge.json │ │ ├── magmium-liquifier.json │ │ ├── molten-alloy-forge.json │ │ ├── pyra-factory.json │ │ └── unit-clumper.json │ ├── turrets │ │ ├── anticaeli.json │ │ ├── eideann.json │ │ ├── flux.json │ │ ├── gijima.json │ │ ├── isolde.json │ │ ├── prisma.json │ │ ├── sanitatem.json │ │ └── vita.json │ └── units │ │ └── factories │ │ ├── tier-1-factory.json │ │ ├── tier-2-reconstructor.json │ │ ├── tier-3-reconstructor.json │ │ ├── tier-4-reconstructor.json │ │ └── tier-5-reconstructor.json ├── items │ ├── ai-core.json │ ├── magmium.json │ ├── molten-alloy.json │ ├── packet-flare.json │ ├── packet-fossores.json │ └── packet-sterna.json ├── liquids │ └── plasmatic-slag.json ├── status │ ├── build.json │ ├── costRestore.json │ └── energyDrain.json └── units │ ├── drone │ ├── attacking-dorito.json │ ├── exploding-dorito.json │ ├── healing-dorito.json │ ├── iris.json │ └── rose.json │ ├── ground-type │ ├── Acyuta.json │ ├── Akalbir.json │ ├── Amarsukh.json │ ├── curativo.json │ ├── reparar.json │ └── wip.json │ ├── interceptor-type │ ├── arei.json │ ├── delver.json │ ├── dredge.json │ ├── fossores.json │ ├── mothership.json │ ├── navis.json │ └── sterna.json │ └── naval-type │ ├── auxilium.json │ ├── eruca.json │ ├── gladius.json │ ├── pellentesque.json │ ├── proelium.json │ └── unit-missiles │ ├── missile-u1.json │ ├── missile-u2.json │ └── wip-missile.json ├── icon-old.png ├── icon.png ├── mod.hjson ├── schematics ├── battery %.msch ├── battery graph.msch ├── battery sorter.msch ├── inf_link_turret.msch ├── pyra heal.msch └── smelter.msch ├── sounds └── flux-artillery.mp3 └── sprites ├── blocks ├── core │ ├── baratrous-team.png │ ├── baratrous.png │ ├── regis-team.png │ └── regis.png ├── defence │ ├── pyra-door-open.png │ ├── pyra-door.png │ ├── pyra-wall-small.png │ └── pyra-wall.png ├── distribution │ ├── conveyor │ │ ├── pyra-conveyor-0-0.png │ │ ├── pyra-conveyor-0-1.png │ │ ├── pyra-conveyor-0-2.png │ │ ├── pyra-conveyor-0-3.png │ │ ├── pyra-conveyor-1-0.png │ │ ├── pyra-conveyor-1-1.png │ │ ├── pyra-conveyor-1-2.png │ │ ├── pyra-conveyor-1-3.png │ │ ├── pyra-conveyor-2-0.png │ │ ├── pyra-conveyor-2-1.png │ │ ├── pyra-conveyor-2-2.png │ │ ├── pyra-conveyor-2-3.png │ │ ├── pyra-conveyor-3-0.png │ │ ├── pyra-conveyor-3-1.png │ │ ├── pyra-conveyor-3-2.png │ │ ├── pyra-conveyor-3-3.png │ │ ├── pyra-conveyor-4-0.png │ │ ├── pyra-conveyor-4-1.png │ │ ├── pyra-conveyor-4-2.png │ │ └── pyra-conveyor-4-3.png │ └── highway │ │ ├── pyra-highway-0.png │ │ ├── pyra-highway-1.png │ │ ├── pyra-highway-2.png │ │ ├── pyra-highway-edge.png │ │ ├── pyra-highway-stack.png │ │ └── pyra-highway.png ├── drills │ ├── large-pyra-drill │ │ ├── large-pyra-drill-rim.png │ │ ├── large-pyra-drill-rotator.png │ │ ├── large-pyra-drill-top.png │ │ └── large-pyra-drill.png │ ├── pyra-drill-rotator.png │ ├── pyra-drill-top.png │ ├── pyra-drill.png │ ├── small-pyra-drill-rotator.png │ ├── small-pyra-drill-top.png │ └── small-pyra-drill.png ├── effect │ ├── pyra-overdrive-top.png │ └── pyra-overdrive.png ├── logic │ └── pyra-processor.png ├── power │ ├── large-pyra-panel.png │ ├── pyra-battery-top.png │ ├── pyra-battery.png │ ├── pyra-panel.png │ ├── pyra-tower.png │ ├── pyratite-reactor-light.png │ ├── pyratite-reactor-plasma-0.png │ ├── pyratite-reactor-plasma-1.png │ ├── pyratite-reactor-plasma-2.png │ ├── pyratite-reactor-plasma-3.png │ ├── pyratite-reactor.png │ ├── pyratite-steam-turbine.png │ ├── pyratite-steam.png │ └── pyratitel-reactor-bottom.png ├── production │ ├── ai-core-fabricator.png │ ├── crusher-piston.png │ ├── crusher-top.png │ ├── crusher-ui.png │ ├── crusher.png │ ├── magmium-forge.png │ ├── molten-alloy-forge.png │ ├── pyra-factory.png │ └── unit-clumper.png ├── turrets │ ├── anticaeli │ │ ├── anticaeli-heat.png │ │ ├── anticaeli-preview.png │ │ ├── anticaeli-shield-l.png │ │ ├── anticaeli-shield-r.png │ │ └── anticaeli.png │ ├── eideann │ │ ├── eideann-barrel-l.png │ │ ├── eideann-barrel-r.png │ │ ├── eideann-heat.png │ │ ├── eideann-preview.png │ │ └── eideann.png │ ├── flux │ │ ├── flux-back.png │ │ ├── flux-blade-l.png │ │ ├── flux-blade-r.png │ │ ├── flux-heat.png │ │ ├── flux-preview.png │ │ └── flux.png │ ├── gijima │ │ ├── gijima-back.png │ │ ├── gijima-blade-l.png │ │ ├── gijima-blade-r.png │ │ ├── gijima-heat.png │ │ ├── gijima-preview.png │ │ └── gijima.png │ ├── isolde.png │ ├── lasersprites │ │ ├── pyra-laser-center.png │ │ ├── pyra-laser-end.png │ │ ├── pyra-laser.png │ │ ├── small-pyra-laser-center.png │ │ ├── small-pyra-laser-end.png │ │ └── small-pyra-laser.png │ ├── prisma │ │ ├── prisma-back.png │ │ ├── prisma-blade-l.png │ │ ├── prisma-blade-r.png │ │ ├── prisma-heat.png │ │ ├── prisma-preview.png │ │ └── prisma.png │ ├── sanitatem │ │ ├── sanitatem-heat.png │ │ ├── sanitatem-preview.png │ │ ├── sanitatem-shield-l.png │ │ ├── sanitatem-shield-r.png │ │ └── sanitatem.png │ └── vita │ │ ├── tiny-laser-center.png │ │ ├── tiny-laser-end.png │ │ ├── tiny-laser.png │ │ ├── vita-heat.png │ │ ├── vita-preview.png │ │ ├── vita-shield-l.png │ │ ├── vita-shield-r.png │ │ └── vita.png └── units │ ├── factories │ ├── tier-1-factory-top.png │ └── tier-1-factory.png │ └── reconstructors │ ├── tier-2-reconstructor-top.png │ ├── tier-2-reconstructor.png │ ├── tier-3-reconstructor-top.png │ ├── tier-3-reconstructor.png │ ├── tier-4-reconstructor-top.png │ ├── tier-4-reconstructor.png │ ├── tier-5-reconstructor-top.png │ └── tier-5-reconstructor.png ├── items ├── ai-core.png ├── magmium.png ├── molten-alloy.png ├── packet-flare.png ├── packet-fossores.png └── packet-sterna.png ├── liquids └── plasmatic-slag.png ├── no texture.png ├── statuses ├── build.png ├── costRestore.png └── energyDrain.png └── units ├── drone ├── attacking-dorito-cell.png ├── attacking-dorito.png ├── exploding-dorito-cell.png ├── exploding-dorito.png ├── healing-dorito-cell.png ├── healing-dorito.png ├── iris-cell.png ├── iris-full.png ├── iris.png ├── rose-cell.png ├── rose-full.png └── rose.png ├── ground-type ├── Acyuta-cell.png ├── Acyuta-full.png ├── Acyuta-treads.png ├── Acyuta.png ├── Akalbir-cell.png ├── Akalbir-full.png ├── Akalbir-treads.png ├── Akalbir.png ├── Amarsukh-cell.png ├── Amarsukh-full.png ├── Amarsukh-treads.png ├── Amarsukh.png ├── curativo-cell.png ├── curativo-drill-spinner.png ├── curativo-drill.png ├── curativo-treads.png ├── curativo-ui.png ├── curativo.png ├── reparar-cell.png ├── reparar-drill-spinner.png ├── reparar-treads.png ├── reparar-ui.png ├── reparar.png ├── weapons │ ├── Acyuta-weapon-cell.png │ ├── Acyuta-weapon.png │ ├── Akalbir-weapon.png │ ├── Amar-weapon-1.png │ ├── Amar-weapon-2.png │ └── Amar-weapon-3.png ├── wip-cell.png ├── wip-full.png ├── wip-treads.png └── wip.png ├── interceptor-type ├── arei-cell.png ├── arei-full.png ├── arei-weapon-heat.png ├── arei.png ├── delver-cell.png ├── delver-full.png ├── delver.png ├── dredge-cell.png ├── dredge-full.png ├── dredge.png ├── fossores-cell.png ├── fossores-full.png ├── fossores.png ├── mothership-cell.png ├── mothership-full.png ├── mothership.png ├── navis-cell.png ├── navis-full.png ├── navis.png ├── sterna-cell.png ├── sterna-full.png ├── sterna.png └── weapons │ ├── big-cannon.png │ ├── cannon.png │ ├── cluster-cannon.png │ ├── electric-laser.png │ ├── repair-point-cell.png │ ├── repair-point.png │ ├── repair-turret.png │ ├── small-blaster.png │ └── small-repair-point.png └── naval-type ├── auxilium-cell.png ├── auxilium-full.png ├── auxilium.png ├── eruca-cell.png ├── eruca-full.png ├── eruca.png ├── gladius-cell.png ├── gladius-full.png ├── gladius.png ├── pellentesque-cell.png ├── pellentesque-full.png ├── pellentesque.png ├── proelium-cell.png ├── proelium-full.png ├── proelium.png ├── unit-missiles ├── missile-u1-cell.png ├── missile-u1.png ├── missile-u2-cell.png ├── missile-u2.png ├── wip-missile-cell.png └── wip-missile.png └── weapons ├── large-rl.png ├── small-rl-cell.png └── small-rl.png /.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /.idea/pyra-erekir.iml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | 9 | 10 | 15 | 16 | 18 | 19 | 21 | 22 | 24 | 27 | 28 | 29 | 32 | 41 | 42 | 43 | 44 | 45 | 1706927294511 46 | 50 | 51 | 52 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # pyra-erekir 2 | Pyratite focused mod which adds units turrets drills power and more 3 | this is a mod for me to try my ideas but you may use the content to make your own json/hjson mods 4 | for feedback: vali#5378 5 | -------------------------------------------------------------------------------- /content/blocks/core/baratrous.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "CoreBlock", 3 | "name": "[#ff66]Baratrous", 4 | "description": "The upgrade to the Regis Core. The Baratrous Builds a Dredge to help defend it", 5 | "details": "", 6 | "size": 5, 7 | "researchCostMultiplier": 0.4, 8 | "health": 20000, 9 | "itemCapacity": 25000, 10 | "requirements": [ 11 | { 12 | "item": "copper", 13 | "amount": 8000 14 | }, 15 | { 16 | "item": "lead", 17 | "amount": 8000 18 | }, 19 | { 20 | "item": "silicon", 21 | "amount": 5000 22 | }, 23 | { 24 | "item": "thorium", 25 | "amount": 5000 26 | }, 27 | { 28 | "item": "titanium", 29 | "amount": 5000 30 | }, 31 | { 32 | "item": "molten-alloy", 33 | "amount": 1000 34 | } 35 | ], 36 | "category": "effect", 37 | "research": "regis", 38 | "unitType": "dredge", 39 | "unitCapModifier": 50 40 | } 41 | 42 | -------------------------------------------------------------------------------- /content/blocks/core/regis.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "CoreBlock", 3 | "name": "[#ff66]Regis", 4 | "description": "Sister to the Foundation. The Regis Core Builds a Delver to help defend it", 5 | "details": "", 6 | "size": 4, 7 | "researchCostMultiplier": 0.4, 8 | "health": 5000, 9 | "itemCapacity": 15000, 10 | "requirements": [ 11 | { 12 | "item": "copper", 13 | "amount": 3000 14 | }, 15 | { 16 | "item": "lead", 17 | "amount": 3000 18 | }, 19 | { 20 | "item": "silicon", 21 | "amount": 2000 22 | }, 23 | { 24 | "item": "pyratite", 25 | "amount": 1000 26 | } 27 | ], 28 | "category": "effect", 29 | "research": "core-shard", 30 | "unitType": "delver", 31 | "unitCapModifier": 25 32 | } 33 | -------------------------------------------------------------------------------- /content/blocks/defence/pyra-door.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "AutoDoor", 3 | "localizedName": "[#ff66]Pyratite door", 4 | "health": 1500, 5 | "size": 2, 6 | "armor": 10, 7 | "requirements": [ 8 | "molten-alloy/15", 9 | "plastanium/5", 10 | "phase-fabric/5" 11 | ], 12 | "category": "defense", 13 | "research": { 14 | "parent": "pyra-wall", 15 | "requirements": [ 16 | {"item": "lead", "amount": 2000}, 17 | {"item": "copper", "amount": 2000}, 18 | {"item": "titanium", "amount": 2000}, 19 | {"item": "silicon", "amount": 1000} 20 | ] 21 | } 22 | } -------------------------------------------------------------------------------- /content/blocks/defence/pyra-wall-small.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "Wall", 3 | "localizedName": "[#ff66]Small pyratite wall", 4 | "health": 800, 5 | "size": 1, 6 | "armor": 10, 7 | "chanceDeflect": 10, 8 | "flashHit": "true", 9 | "insulated": "true", 10 | "absorbLasers": "true", 11 | "requirements": [ 12 | "molten-alloy/4", 13 | "plastanium/3", 14 | "phase-fabric/3" 15 | ], 16 | "category": "defense", 17 | "research": { 18 | "parent": "molten-alloy", 19 | "requirements": [ 20 | {"item": "lead", "amount": 500}, 21 | {"item": "copper", "amount": 500}, 22 | {"item": "titanium", "amount": 500} 23 | ] 24 | } 25 | } -------------------------------------------------------------------------------- /content/blocks/defence/pyra-wall.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "Wall", 3 | "localizedName": "[#ff66]Pyratite wall", 4 | "health": 3000, 5 | "size": 2, 6 | "armor": 10, 7 | "chanceDeflect": 10, 8 | "flashHit": "true", 9 | "insulated": "true", 10 | "absorbLasers": "true", 11 | "requirements": [ 12 | "molten-alloy/25", 13 | "plastanium/5", 14 | "phase-fabric/5" 15 | ], 16 | "category": "defense", 17 | "research": { 18 | "parent": "pyra-wall-small", 19 | "requirements": [ 20 | {"item": "lead", "amount": 2000}, 21 | {"item": "copper", "amount": 2000}, 22 | {"item": "titanium", "amount": 2000} 23 | ] 24 | } 25 | } -------------------------------------------------------------------------------- /content/blocks/distribution/pyra-conveyor.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "Conveyor", 3 | "name": "[#ff66]Pyra Conveyor", 4 | "description": "A pyratite based conveyor", 5 | "category": "distribution", 6 | "requirements": [ 7 | "thorium/1", 8 | "pyratite/1" 9 | ], 10 | "health": 200, 11 | "speed": 0.15, 12 | "displayedSpeed": 20, 13 | "research": { 14 | "parent": "molten-alloy", 15 | "requirements": [ 16 | "pyratite/1000" 17 | ] 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /content/blocks/distribution/pyra-highway.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "StackConveyor", 3 | "name": "[#ff66]Pyra Highway", 4 | "description": "A pyratite based stackconveyor", 5 | "category": "distribution", 6 | "requirements": [ 7 | "molten-alloy/1" 8 | ], 9 | "health": 200, 10 | "speed": 0.075, 11 | "itemCapacity": 20, 12 | "unloadEffect": { 13 | "type": "WaveEffect", 14 | "sizeFrom": 0, 15 | "sizeTo": 5, 16 | "colorFrom": "FFFF00", 17 | "colorTo": "FF0000" 18 | }, 19 | "outputRouter": true, 20 | "loadEffect": { 21 | "type": "WaveEffect", 22 | "sizeFrom": 5, 23 | "sizeTo": 0, 24 | "colorFrom": "FFFF00", 25 | "colorTo": "FF0000" 26 | }, 27 | "glowColor": "FF6600", 28 | "research": { 29 | "parent": "pyra-conveyor", 30 | "requirements": [ 31 | "pyratite/1000" 32 | ] 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /content/blocks/drills/large-pyra-drill.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "[#ff66]Large pyra Drill", 3 | "description": "An even better airblast drill, requires long time to start up and a lot of power. requires slag to achive full potential.", 4 | "type": "Drill", 5 | "health": 800, 6 | "blockedItems": "sand", 7 | "drawMineItem": true, 8 | "warmupSpeed": 0.0005, 9 | "size": 4, 10 | "hasPower": true, 11 | "drawRim": true, 12 | "hasLiquids": true, 13 | "liquidCapacity": 10, 14 | "hasItems": true, 15 | "itemCapacity": 20, 16 | "tier": 15, 17 | "drillTime": 200, 18 | "rotateSpeed": 12, 19 | "liquidBoostIntensity": 2.0, 20 | "hardnessDrillMultiplier": 23, 21 | "consumes": { 22 | "power": 7.0, 23 | "liquid": { 24 | "liquid": "slag", 25 | "amount": 0.05, 26 | "optional": true, 27 | "booster": true 28 | } 29 | }, 30 | "requirements": [ 31 | { "item": "copper", "amount": 150 }, 32 | { "item": "titanium", "amount": 100 }, 33 | { "item": "thorium", "amount": 150 }, 34 | { "item": "silicon", "amount": 150 }, 35 | { "item": "molten-alloy", "amount": 10 } 36 | ], 37 | "category": "production", 38 | "research": { 39 | "parent": "pyra-drill", 40 | "requirements": [ 41 | {"item": "lead", "amount": 1000}, 42 | {"item": "copper", "amount": 1000}, 43 | {"item": "silicon", "amount": 1000}, 44 | {"item": "titanium", "amount": 1000}, 45 | {"item": "molten-alloy", "amount": 100} 46 | ] 47 | } 48 | } 49 | -------------------------------------------------------------------------------- /content/blocks/drills/pyra-drill.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "[#ff66]Pyra Drill", 3 | "description": "A medium sized but powerfull drill for everything.", 4 | "type": "Drill", 5 | "size": 3, 6 | "health": 500, 7 | "liquidCapacity": 5, 8 | "itemCapacity": 20, 9 | "tier": 6, 10 | "drillTime": 200, 11 | "warmupSpeed": 0.001, 12 | "rotateSpeed": 8, 13 | "liquidBoostIntensity": 2.0, 14 | "consumes": { 15 | "power": 2.0, 16 | "liquid": { 17 | "liquid": "cryofluid", 18 | "amount": 0.025, 19 | "optional": true, 20 | "booster": true 21 | } 22 | }, 23 | "requirements": [ 24 | { "item": "copper", "amount": 50 }, 25 | { "item": "graphite", "amount": 50 }, 26 | { "item": "molten-alloy", "amount": 10 }, 27 | { "item": "silicon", "amount": 50 } 28 | ], 29 | "category": "production", 30 | "research": { 31 | "parent": "molten-alloy", 32 | "requirements": [ 33 | {"item": "lead", "amount": 500}, 34 | {"item": "copper", "amount": 500}, 35 | {"item": "graphite", "amount": 500}, 36 | {"item": "titanium", "amount": 500} 37 | ] 38 | } 39 | } 40 | -------------------------------------------------------------------------------- /content/blocks/drills/small-pyra-drill.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "[#ff66]Small pyra Drill", 3 | "description": "A small sized but powerfull drill", 4 | "type": "Drill", 5 | "size": 2, 6 | "health": 250, 7 | "liquidCapacity": 5, 8 | "itemCapacity": 20, 9 | "tier": 4, 10 | "drillTime": 200, 11 | "warmupSpeed": 0.001, 12 | "rotateSpeed": 8, 13 | "liquidBoostIntensity": 2.0, 14 | "consumes": { 15 | "liquid": { 16 | "liquid": "water", 17 | "amount": 0.1, 18 | "optional": true, 19 | "booster": true 20 | } 21 | }, 22 | "requirements": [ 23 | { "item": "titanium", "amount": 25 }, 24 | { "item": "thorium", "amount": 25 }, 25 | ], 26 | "category": "production", 27 | "research": { 28 | "parent": "molten-alloy", 29 | "requirements": [ 30 | {"item": "lead", "amount": 500}, 31 | {"item": "copper", "amount": 500}, 32 | {"item": "graphite", "amount": 500}, 33 | {"item": "titanium", "amount": 500} 34 | ] 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /content/blocks/effect/pyra-overdrive.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "OverdriveProjector", 3 | "name": "Pyra overdrive", 4 | "description": "A upgrade overdrive projector requires constant supply of plasmatic slag", 5 | "health": 1000, 6 | "size": 4, 7 | "range": 150, 8 | "speedBoost": 2.0, 9 | "speedBoostPhase": 1.5, 10 | "phaseRangeBoost": 100, 11 | "liquidCapacity": 100, 12 | "reload": 1, 13 | "consumes": { 14 | "power": 20.0, 15 | "liquid": { 16 | "booster": true, 17 | "optional": true, 18 | "liquid": "plasmatic-slag", 19 | "amount": 0.05 20 | } 21 | }, 22 | "requirements": [ 23 | { 24 | "item": "lead", 25 | "amount": 500 26 | }, 27 | { 28 | "item": "titanium", 29 | "amount": 500 30 | }, 31 | { 32 | "item": "silicon", 33 | "amount": 500 34 | }, 35 | { 36 | "item": "magmium", 37 | "amount": 100 38 | } 39 | ], 40 | "category": "effect", 41 | "research": { 42 | "parent": "pyra-panel", 43 | "requirements": [ 44 | {"item": "silicon", "amount": 500}, 45 | {"item": "magmium", "amount": 100} 46 | ] 47 | } 48 | } 49 | -------------------------------------------------------------------------------- /content/blocks/logic/pyra-processor.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "LogicBlock", 3 | "name": "Pyra processor", 4 | "description": "An armored processor made with molten alloy", 5 | "health": 750, 6 | "size": 2, 7 | "instructionsPerTick": 10, 8 | "range": 200, 9 | "requirements": [ 10 | "lead/300", 11 | "silicon/100", 12 | "molten-alloy/20", 13 | "ai-core/20" 14 | ], 15 | "category": "logic", 16 | "research": { 17 | "parent": "molten-alloy", 18 | "requirements": [ 19 | {"item": "lead", "amount": 500}, 20 | {"item": "copper", "amount": 500}, 21 | {"item": "silicon", "amount": 2000}, 22 | {"item": "thorium", "amount": 500} 23 | ] 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /content/blocks/power/large-pyra-panel.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "SolarGenerator", 3 | "name": "Large pyra solar panel", 4 | "description": "Uses refined [#ff]Magmium[] for high efficiency and strength", 5 | "health": 750, 6 | "size": 3, 7 | "powerProduction": 5, 8 | "requirements": [ 9 | "lead/200", 10 | "silicon/200", 11 | "magmium/20" 12 | ], 13 | "category": "power", 14 | "research": { 15 | "parent": "pyra-panel", 16 | "requirements": [ 17 | {"item": "lead", "amount": 2500}, 18 | {"item": "copper", "amount": 2500}, 19 | {"item": "silicon", "amount": 2500}, 20 | {"item": "titanium", "amount": 2500} 21 | ] 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /content/blocks/power/pyra-battery.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "Battery", 3 | "name": "Pyra battery", 4 | "description": "A more energy dense and strong battery", 5 | "health": 250, 6 | "size": 1, 7 | "consumes": { "powerBuffered": 10000 }, 8 | "requirements": [ 9 | "molten-alloy/1" 10 | ], 11 | "category": "power", 12 | "research": { 13 | "parent": "molten-alloy", 14 | "requirements": [ 15 | {"item": "lead", "amount": 500}, 16 | {"item": "copper", "amount": 500}, 17 | {"item": "silicon", "amount": 500}, 18 | {"item": "titanium", "amount": 500} 19 | ] 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /content/blocks/power/pyra-panel.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "SolarGenerator", 3 | "name": "Pyra solar panel", 4 | "description": "Uses the refined [#ff66]molten alloy[] for increased efficency and strenght", 5 | "health": 100, 6 | "size": 1, 7 | "powerProduction": 0.25, 8 | "requirements": [ 9 | "lead/25", 10 | "silicon/25", 11 | "molten-alloy/5" 12 | ], 13 | "category": "power", 14 | "research": { 15 | "parent": "molten-alloy", 16 | "requirements": [ 17 | {"item": "lead", "amount": 500}, 18 | {"item": "copper", "amount": 500}, 19 | {"item": "silicon", "amount": 500}, 20 | {"item": "titanium", "amount": 500} 21 | ] 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /content/blocks/power/pyra-tower.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "PowerNode", 3 | "name": "Pyratite tower", 4 | "description": "A large and strong node tower used for main power distribution to front lines", 5 | "health": 1000, 6 | "size": 2, 7 | "maxNodes": 4, 8 | "laserRange": 50, 9 | "requirements": [ 10 | "lead/10", 11 | "silicon/10", 12 | "titanium/10", 13 | "magmium/5" 14 | ], 15 | "category": "power", 16 | "research": { 17 | "parent": "pyra-panel", 18 | "requirements": [ 19 | {"item": "lead", "amount": 500}, 20 | {"item": "copper", "amount": 500}, 21 | {"item": "silicon", "amount": 500}, 22 | {"item": "titanium", "amount": 500} 23 | ] 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /content/blocks/power/pyratite-reactor.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "ImpactReactor", 3 | "name": "Pyra reactor", 4 | "description": "Uses the high flammability of Pyratite to create large amounts of power from it.", 5 | "health": 1000, 6 | "size": 4, 7 | "hasPower": true, 8 | "hasLiquids": true, 9 | "hasItems": true, 10 | "explosionShake": 15, 11 | "lightColor": "ff6600", 12 | "itemCapacity": 10, 13 | "liquidCapacity": 200, 14 | "itemDuration": 150, 15 | "powerProduction": 80, 16 | "warmupSpeed": 0.002, 17 | "explosionDamage": 2000, 18 | "explosionRadius": 10, 19 | "ambientSound": "pulse", 20 | "ambientSoundVolume": 0.5, 21 | "consumes": { 22 | "power": 10, 23 | "liquid": { 24 | "liquid": "cryofluid", 25 | "amount": 0.15 26 | }, 27 | "items": { 28 | "items": [ 29 | {"item": "pyratite", "amount": 1} 30 | ] 31 | } 32 | }, 33 | "requirements": [ 34 | "lead/500", 35 | "copper/500", 36 | "titanium/500", 37 | "metaglass/250", 38 | "silicon/250", 39 | "molten-alloy/100" 40 | ], 41 | "category": "power", 42 | "research": { 43 | "parent": "pyra-panel", 44 | "requirements": [ 45 | {"item": "lead", "amount": 500}, 46 | {"item": "copper", "amount": 500}, 47 | {"item": "titanium", "amount": 500}, 48 | {"item": "molten-alloy", "amount": 100} 49 | ] 50 | } 51 | } 52 | -------------------------------------------------------------------------------- /content/blocks/power/pyratite-steam.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "ImpactReactor", 3 | "name": "Pyra turbine", 4 | "description": "An advanced steam turbine \nrequires time to spool up and power", 5 | "health": 500, 6 | "size": 2, 7 | "hasPower": true, 8 | "hasLiquids": true, 9 | "hasItems": true, 10 | "explosionShake": 10, 11 | "lightColor": "996600", 12 | "itemCapacity": 10, 13 | "liquidCapacity": 25, 14 | "itemDuration": 60, 15 | "powerProduction": 12, 16 | "warmupSpeed": 0.003, 17 | "explosionDamage": 250, 18 | "explosionRadius": 5, 19 | "ambientSound": "smelter", 20 | "ambientSoundVolume": 0.2, 21 | "consumes": { 22 | "power": 0.5, 23 | "liquid": { 24 | "liquid": "water", 25 | "amount": 0.2 26 | }, 27 | "items": [ 28 | {"item": "coal", "amount": 1}, 29 | ], 30 | }, 31 | "drawer": { 32 | "type": "DrawMulti", 33 | "drawers": [ 34 | { 35 | "type": "DrawDefault" 36 | }, 37 | { 38 | "type": "DrawRegion", 39 | "suffix": "-turbine", 40 | "spinSprite": true, 41 | "rotateSpeed": 8 42 | } 43 | ] 44 | }, 45 | "requirements": [ 46 | "copper/50", 47 | "titanium/50", 48 | "metaglass/50", 49 | "molten-alloy/10" 50 | ], 51 | "category": "power", 52 | "research": { 53 | "parent": "pyra-panel", 54 | "requirements": [ 55 | {"item": "lead", "amount": 500}, 56 | {"item": "copper", "amount": 500}, 57 | {"item": "titanium", "amount": 500}, 58 | {"item": "molten-alloy", "amount": 100} 59 | ] 60 | } 61 | } 62 | -------------------------------------------------------------------------------- /content/blocks/production/ai-core-fabricator.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "GenericCrafter", 3 | "localizedName": "[#00ff]AI core fabricator", 4 | "description": "Produces AI cores used for units", 5 | "outputItem": "ai-core/1", 6 | "outputLiquid": "slag/0.2", 7 | "health": 500, 8 | "itemCapacity": 50, 9 | "liquidCapacity": 50, 10 | "size": 3, 11 | "craftTime": 300, 12 | "hasPower": true, 13 | "hasLiquids": true, 14 | "hasItems": true, 15 | "updateEffect": "smeltsmoke", 16 | "consumes": { 17 | "power": 4, 18 | "items": { 19 | "items": [ 20 | "molten-alloy/1", 21 | "copper/10", 22 | "silicon/5" 23 | ] 24 | } 25 | }, 26 | "requirements": [ 27 | {"item": "copper", "amount": 200}, 28 | {"item": "lead", "amount": 200}, 29 | {"item": "graphite", "amount": 50}, 30 | {"item": "titanium", "amount": 50} 31 | ], 32 | "category": "crafting", 33 | "research": { 34 | "parent": "molten-alloy-forge", 35 | "requirements": [ 36 | {"item": "lead", "amount": 1000}, 37 | {"item": "copper", "amount": 1000}, 38 | {"item": "graphite", "amount": 500}, 39 | {"item": "titanium", "amount": 500} 40 | ] 41 | } 42 | } 43 | -------------------------------------------------------------------------------- /content/blocks/production/crusher.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "multicraft.MultiCrafter", 3 | "localizedName": "[#ff66]Crusher", 4 | "description": "Creates scrap by crushing a variaty of items", 5 | "health": 500, 6 | "itemCapacity": 50, 7 | "size": 3, 8 | "hasPower": true, 9 | "hasItems": true, 10 | "hasLiquids": true, 11 | "updateEffect": "smeltsmoke", 12 | "recipes": 13 | [ 14 | { 15 | "input": { 16 | "power": 2, 17 | "items": [ 18 | {"item": "copper", "amount": 3} 19 | ] 20 | }, 21 | "output": { 22 | "items": [ 23 | {"item": "scrap", "amount": 1} 24 | ] 25 | }, 26 | "craftTime": 60 27 | }, 28 | { 29 | "input": { 30 | "power": 2, 31 | "items": [ 32 | {"item": "lead", "amount": 3} 33 | ] 34 | }, 35 | "output": { 36 | "items": [ 37 | {"item": "scrap", "amount": 1} 38 | ] 39 | }, 40 | "craftTime": 60 41 | }, 42 | { 43 | "input": { 44 | "power": 2, 45 | "items": [ 46 | {"item": "graphite", "amount": 3} 47 | ] 48 | }, 49 | "output": { 50 | "items": [ 51 | {"item": "scrap", "amount": 1} 52 | ] 53 | }, 54 | "craftTime": 60 55 | }, 56 | { 57 | "input": { 58 | "power": 2, 59 | "items": [ 60 | {"item": "titanium", "amount": 2} 61 | ] 62 | }, 63 | "output": { 64 | "items": [ 65 | {"item": "scrap", "amount": 1} 66 | ] 67 | }, 68 | "craftTime": 60 69 | }, 70 | { 71 | "input": { 72 | "power": 2, 73 | "items": [ 74 | {"item": "sand", "amount": 5} 75 | ] 76 | }, 77 | "output": { 78 | "items": [ 79 | {"item": "scrap", "amount": 1} 80 | ] 81 | }, 82 | "craftTime": 60 83 | } 84 | ], 85 | "drawer": [ 86 | { 87 | "type": "DrawDefault" 88 | }, 89 | { 90 | "type": "DrawPistons", 91 | "suffix": "-piston", 92 | "progress": "warmup", 93 | "sinMag": 6, 94 | "sinMin": 3, 95 | "sides": 2 96 | }, 97 | { 98 | "type": "DrawRegion", 99 | "suffix": "-top" 100 | } 101 | ], 102 | "requirements": [ 103 | {"item": "copper", "amount": 200}, 104 | {"item": "lead", "amount": 200}, 105 | {"item": "titanium", "amount": 50}, 106 | {"item": "molten-alloy", "amount": 10} 107 | ], 108 | "category": "crafting", 109 | "research": { 110 | "parent": "molten-alloy-forge", 111 | "requirements": [ 112 | {"item": "lead", "amount": 1000}, 113 | {"item": "copper", "amount": 1000}, 114 | {"item": "graphite", "amount": 500}, 115 | {"item": "titanium", "amount": 500} 116 | ] 117 | } 118 | } 119 | -------------------------------------------------------------------------------- /content/blocks/production/magmium-forge.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "GenericCrafter", 3 | "localizedName": "[#ff66]Magmium Forge", 4 | "description": "Molds multiple high temperature or combustible materials in 1 mass", 5 | "outputItem": "magmium/1", 6 | "health": 500, 7 | "itemCapacity": 20, 8 | "liquidCapacity": 40, 9 | "size": 3, 10 | "craftTime": 300, 11 | "hasPower": true, 12 | "hasLiquids": false, 13 | "hasItems": true, 14 | "updateEffect": "smeltsmoke", 15 | "consumes": { 16 | "power": 4, 17 | "items": { 18 | "items": [ 19 | "molten-alloy/1", 20 | "pyratite/1", 21 | "blast-compound/1", 22 | "coal/1" 23 | ] 24 | } 25 | }, 26 | "requirements": [ 27 | {"item": "copper", "amount": 200}, 28 | {"item": "lead", "amount": 200}, 29 | {"item": "graphite", "amount": 50}, 30 | {"item": "titanium", "amount": 50} 31 | ], 32 | "category": "crafting", 33 | "research": { 34 | "parent": "molten-alloy", 35 | "requirements": [ 36 | {"item": "lead", "amount": 1000}, 37 | {"item": "copper", "amount": 1000}, 38 | {"item": "graphite", "amount": 500}, 39 | {"item": "titanium", "amount": 500} 40 | ] 41 | } 42 | } 43 | -------------------------------------------------------------------------------- /content/blocks/production/magmium-liquifier.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "GenericCrafter", 3 | "localizedName": "[#ff]Magmium liquifier", 4 | "description": "Mixes magmium with slag to create plasmatic slag", 5 | "outputLiquid": "plasmatic-slag/0.2", 6 | "health": 1000, 7 | "itemCapacity": 20, 8 | "liquidCapacity": 50, 9 | "size": 3, 10 | "craftTime": 60, 11 | "hasPower": true, 12 | "hasLiquids": true, 13 | "hasItems": true, 14 | "updateEffect": "smeltsmoke", 15 | "consumes": { 16 | "power": 10, 17 | "liquid": "slag/0.2", 18 | "items": { 19 | "items": [ 20 | "magmium/1" 21 | ] 22 | } 23 | }, 24 | "requirements": [ 25 | {"item": "copper", "amount": 200}, 26 | {"item": "lead", "amount": 200}, 27 | {"item": "titanium", "amount": 100}, 28 | {"item": "magmium", "amount": 40} 29 | ], 30 | "category": "crafting", 31 | "research": { 32 | "parent": "magmium-forge", 33 | "requirements": [ 34 | {"item": "lead", "amount": 1000}, 35 | {"item": "copper", "amount": 1000}, 36 | {"item": "graphite", "amount": 500}, 37 | {"item": "titanium", "amount": 500} 38 | ] 39 | } 40 | } 41 | -------------------------------------------------------------------------------- /content/blocks/production/molten-alloy-forge.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "GenericCrafter", 3 | "localizedName": "[#ff66]Molten alloy forge", 4 | "description": "forges pyratite into a strong alloy", 5 | "outputItem": "molten-alloy/1", 6 | "health": 500, 7 | "itemCapacity": 20, 8 | "liquidCapacity": 60, 9 | "size": 3, 10 | "craftTime": 300, 11 | "hasPower": true, 12 | "hasLiquids": false, 13 | "hasItems": true, 14 | "updateEffect": "smeltsmoke", 15 | "consumes": { 16 | "power": 2, 17 | "items": { 18 | "items": [ 19 | "pyratite/1", 20 | "titanium/1", 21 | "thorium/1" 22 | ] 23 | } 24 | }, 25 | "requirements": [ 26 | {"item": "copper", "amount": 200}, 27 | {"item": "lead", "amount": 200}, 28 | {"item": "graphite", "amount": 50}, 29 | {"item": "titanium", "amount": 50} 30 | ], 31 | "category": "crafting", 32 | "research": { 33 | "parent": "regis", 34 | "requirements": [ 35 | {"item": "lead", "amount": 1000}, 36 | {"item": "copper", "amount": 1000}, 37 | {"item": "graphite", "amount": 500}, 38 | {"item": "titanium", "amount": 500} 39 | ] 40 | } 41 | } 42 | -------------------------------------------------------------------------------- /content/blocks/production/pyra-factory.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "GenericCrafter", 3 | "localizedName": "[#ff66]Pyratite crafter", 4 | "description": "Creates pyratite by mixing coal with scrap", 5 | "outputItem": "pyratite/1", 6 | "health": 500, 7 | "itemCapacity": 20, 8 | "liquidCapacity": 20, 9 | "size": 3, 10 | "craftTime": 120, 11 | "hasPower": true, 12 | "hasLiquids": false, 13 | "hasItems": true, 14 | "updateEffect": "smeltsmoke", 15 | "consumes": { 16 | "power": 2, 17 | "items": { 18 | "items": [ 19 | "coal/1", 20 | "scrap/4" 21 | ] 22 | } 23 | }, 24 | "requirements": [ 25 | {"item": "copper", "amount": 200}, 26 | {"item": "lead", "amount": 200}, 27 | {"item": "graphite", "amount": 50}, 28 | {"item": "titanium", "amount": 50} 29 | ], 30 | "category": "crafting", 31 | "research": { 32 | "parent": "molten-alloy-forge", 33 | "requirements": [ 34 | {"item": "lead", "amount": 1000}, 35 | {"item": "copper", "amount": 1000}, 36 | {"item": "graphite", "amount": 500}, 37 | {"item": "titanium", "amount": 500} 38 | ] 39 | } 40 | } 41 | -------------------------------------------------------------------------------- /content/blocks/production/unit-clumper.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "multicraft.MultiCrafter", 3 | "localizedName": "[#ff66]Compressor", 4 | "description": "Creates Clumps of resources to produce units", 5 | "health": 300, 6 | "itemCapacity": 26, 7 | "size": 2, 8 | "hasPower": true, 9 | "hasItems": true, 10 | "updateEffect": "smeltsmoke", 11 | "menu": "Simple", 12 | "recipes": 13 | [ 14 | { 15 | "input": { 16 | "power": 2, 17 | "items": [ 18 | {"item": "silicon", "amount": 15} 19 | ] 20 | }, 21 | "output": { 22 | "items": [ 23 | {"item": "pyra-packet-flare", "amount": 1} 24 | ] 25 | }, 26 | "craftTime": 60 27 | }, 28 | { 29 | "input": { 30 | "power": 5, 31 | "items": [ 32 | {"item": "pyra-molten-alloy", "amount": 10}, 33 | {"item": "pyra-ai-core", "amount": 1}, 34 | {"item": "silicon", "amount": 100} 35 | ] 36 | }, 37 | "output": { 38 | "items": [ 39 | {"item": "pyra-packet-fossores", "amount": 1} 40 | ] 41 | }, 42 | "craftTime": 300 43 | }, 44 | { 45 | "input": { 46 | "power": 5, 47 | "items": [ 48 | {"item": "pyra-packet-fossores", "amount": 1}, 49 | {"item": "pyra-molten-alloy", "amount": 20}, 50 | {"item": "titanium", "amount": 100}, 51 | {"item": "silicon", "amount": 200} 52 | ] 53 | }, 54 | "output": { 55 | "items": [ 56 | {"item": "pyra-packet-sterna", "amount": 1} 57 | ] 58 | }, 59 | "craftTime": 600 60 | } 61 | ], 62 | "requirements": [ 63 | {"item": "copper", "amount": 200}, 64 | {"item": "lead", "amount": 200}, 65 | {"item": "titanium", "amount": 50}, 66 | {"item": "molten-alloy", "amount": 10} 67 | ], 68 | "category": "crafting", 69 | "research": { 70 | "parent": "molten-alloy-forge", 71 | "requirements": [ 72 | {"item": "lead", "amount": 1000}, 73 | {"item": "copper", "amount": 1000}, 74 | {"item": "graphite", "amount": 500}, 75 | {"item": "titanium", "amount": 500} 76 | ] 77 | } 78 | } 79 | -------------------------------------------------------------------------------- /content/blocks/turrets/anticaeli.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "ContinuousTurret", 3 | "localizedName": "[#00ff]Anti terram", 4 | "description": "A single target laser turret", 5 | "health": 1500, 6 | "size": 2, 7 | "category": "turret", 8 | "requirements": [ 9 | "copper/150", 10 | "lead/150", 11 | "molten-alloy/20" 12 | ], 13 | "targetAir": true, 14 | "targetGround": true, 15 | "outlineIcon": true, 16 | "range": 175, 17 | "loopSound": "minebeam", 18 | "loopSoundVolume": 1, 19 | "shootSound": "none", 20 | "cooldownTime" : 300, 21 | "recoil": 1, 22 | "rotateSpeed": 2, 23 | "shootY": -1.5, 24 | "consumes": { 25 | "power": 5.0 26 | }, 27 | "shootType": { 28 | "type": "PointLaserBulletType", 29 | "sprite": "pyra-pyra-laser", 30 | "collidesTeam": true, 31 | "healAmount": 10, 32 | "damage": 5.0, 33 | }, 34 | "drawer": { 35 | "type": "DrawTurret", 36 | "parts": [ 37 | {}, 38 | { 39 | "suffix": "-shield", 40 | "mirror": true, 41 | "moveX": 1, 42 | "moveY": -1, 43 | "moveRot": -15, 44 | "progress": { 45 | "type": "warmup" 46 | } 47 | } 48 | ] 49 | }, 50 | 51 | "research": { 52 | "parent": "segment", 53 | "requirements": [ 54 | {"item": "lead", "amount": 1500}, 55 | {"item": "copper", "amount": 1500}, 56 | {"item": "titanium", "amount": 1500} 57 | ] 58 | } 59 | } 60 | -------------------------------------------------------------------------------- /content/blocks/turrets/eideann.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "ItemTurret", 3 | "localizedName": "[#ff66]Eideann", 4 | "description": "Spectre's brother\n Eideann fires heavy bullets over a long duration", 5 | "health": 3000, 6 | "size": 4, 7 | "category": "turret", 8 | "requirements": [ 9 | "copper/1000", 10 | "graphite/500", 11 | "plastanium/250", 12 | "magmium/100" 13 | ], 14 | "targetAir": true, 15 | "targetGround": true, 16 | "targetHealing": false, 17 | "outlineIcon": true, 18 | "shake": 2, 19 | "recoil": 2, 20 | "shootSound": "shootBig", 21 | "shootVolume": 1, 22 | "maxAmmo": 50, 23 | "ammoPerShot": 1, 24 | "rotateSpeed": 2, 25 | "reload": 20, 26 | "range": 300, 27 | "ammoUseEffect": "casing4", 28 | "coolantMultiplier": 1.5, 29 | "consumes":{ 30 | "coolant":{ 31 | "amount": 1.0 32 | } 33 | }, 34 | "shoot": { 35 | "type": "ShootAlternate", 36 | "ShootAlternate": true, 37 | "spread": 8 38 | }, 39 | "ammoTypes": { 40 | "graphite": { 41 | "type": "BasicBulletType", 42 | "shootEffect": "shootBig", 43 | "knockback": 0.5, 44 | "hittable": true, 45 | "absorbable": true, 46 | "reloadMultiplier": 2.0, 47 | "ammoMultiplier": 2, 48 | "hitEffect": "blastExplosion", 49 | "makeFire": true, 50 | "damage": 80, 51 | "width": 10, 52 | "height": 25, 53 | "lifetime": 35, 54 | "speed": 8 55 | }, 56 | "pyratite": { 57 | "type": "BasicBulletType", 58 | "ammoMultiplier": 4, 59 | "shootEffect": "shootBig", 60 | "knockback": 1, 61 | 62 | "laserAbsorb": true, 63 | "hittable": false, 64 | "absorbable": true, 65 | "hitEffect": "blastExplosion", 66 | "pierce": true, 67 | "pierceCap": 1, 68 | "pierceBuilding": true, 69 | "status": "burning", 70 | "makeFire": true, 71 | "damage": 200, 72 | "splashDamage": 50, 73 | "splashDamageRadius": 40, 74 | "width": 12, 75 | "height": 30, 76 | "lifetime": 35, 77 | "speed": 8, 78 | "backColor": "f68021", 79 | "frontColor": "f8ad42", 80 | "fragBullets": 10, 81 | "fragSpread": 5, 82 | "fragRandomSpread": 0 83 | }, 84 | "thorium": { 85 | "type": "BasicBulletType", 86 | "shootEffect": "shootBig", 87 | "knockback": 1, 88 | 89 | "laserAbsorb": true, 90 | "hittable": true, 91 | "absorbable": true, 92 | "reloadMultiplier": 1.0, 93 | "ammoMultiplier": 2, 94 | 95 | "hitEffect": "blastExplosion", 96 | "pierce": true, 97 | "pierceCap": 2, 98 | "pierceBuilding": true, 99 | "makeFire": true, 100 | "damage": 200, 101 | "width": 12, 102 | "height": 30, 103 | "lifetime": 35, 104 | "speed": 8 105 | }, 106 | "molten-alloy": { 107 | "type": "BasicBulletType", 108 | "ammoMultiplier": 2, 109 | "shootEffect": "shootBig", 110 | "knockback": 1, 111 | 112 | "laserAbsorb": true, 113 | "hittable": false, 114 | "absorbable": true, 115 | "hitEffect": "blastExplosion", 116 | "pierce": true, 117 | "pierceCap": 2, 118 | "pierceBuilding": true, 119 | "status": "burning", 120 | "makeFire": true, 121 | "damage": 250, 122 | "splashDamage": 50, 123 | "splashDamageRadius": 40, 124 | "width": 12, 125 | "height": 30, 126 | "lifetime": 35, 127 | "speed": 8, 128 | "backColor": "ff6600", 129 | "frontColor": "ff6600" 130 | }, 131 | "magmium": { 132 | "type": "BasicBulletType", 133 | "ammoMultiplier": 4, 134 | "shootEffect": "shootBig", 135 | "knockback": 2, 136 | 137 | "laserAbsorb": true, 138 | "hittable": false, 139 | "absorbable": true, 140 | "hitEffect": "blastExplosion", 141 | "pierce": true, 142 | "pierceCap": 2, 143 | "pierceBuilding": true, 144 | "status": "burning", 145 | "makeFire": true, 146 | "damage": 250, 147 | "splashDamage": 50, 148 | "splashDamageRadius": 40, 149 | "width": 12, 150 | "height": 30, 151 | "lifetime": 35, 152 | "speed": 8, 153 | "backColor": "ff0000", 154 | "frontColor": "ff0000", 155 | "fragBullets": 10, 156 | "fragSpread": 5, 157 | "fragRandomSpread": 0, 158 | "fragBullet": { 159 | "type": "LiquidBulletType", 160 | 161 | "laserAbsorb": true, 162 | "hittable": true, 163 | "absorbable": false, 164 | "status": "burning", 165 | "makeFire": true, 166 | "liquid": "slag", 167 | "despawnHit": true, 168 | "puddleSize": 300, 169 | "width": 8, 170 | "height": 20, 171 | "lifetime": 60, 172 | "speed": 2 173 | } 174 | } 175 | }, 176 | "drawer": { 177 | "type": "DrawTurret", 178 | "parts": [ 179 | {}, 180 | { 181 | "suffix": "-barrel-l", 182 | "mirror": false, 183 | "under": false, 184 | "moveX": 0, 185 | "moveY": -3, 186 | "progress": { 187 | "type": "recoil" 188 | } 189 | }, 190 | { 191 | "suffix": "-barrel-r", 192 | "mirror": false, 193 | "under": false, 194 | "moveX": 0, 195 | "moveY": -3, 196 | "progress": { 197 | "type": "recoil" 198 | } 199 | } 200 | ] 201 | }, 202 | "research": { 203 | "parent": "gijima", 204 | "requirements": [ 205 | {"item": "lead", "amount": 1500}, 206 | {"item": "copper", "amount": 1500}, 207 | {"item": "titanium", "amount": 1500} 208 | ] 209 | } 210 | } 211 | -------------------------------------------------------------------------------- /content/blocks/turrets/flux.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "ItemTurret", 3 | "localizedName": "[#ff66]Flux", 4 | "description": "A large artillery with fire starting frag bullets", 5 | "health": 4000, 6 | "size": 4, 7 | "category": "turret", 8 | "requirements": [ 9 | "copper/1000", 10 | "thorium/500", 11 | "magmium/100", 12 | "ai-core/100" 13 | ], 14 | "targetAir": true, 15 | "targetGround": true, 16 | "targetHealing": false, 17 | "outlineIcon": true, 18 | "shake": 2, 19 | "cooldownTime" : 240, 20 | "recoil": 8, 21 | "minWarmup": 0.94, 22 | "shootWarmupSpeed": 0.05, 23 | "shootY": 2, 24 | "shootSound": "flux-artillery", 25 | "shootVolume": 1, 26 | "maxAmmo": 100, 27 | "ammoPerShot": 5, 28 | "rotateSpeed": 1, 29 | "reload": 300, 30 | "range": 500, 31 | "ammoUseEffect": "casing4", 32 | "coolantMultiplier": 2.0, 33 | "consumes":{ 34 | "coolant":{ 35 | "amount": 1.0 36 | } 37 | }, 38 | "ammoTypes": { 39 | "magmium": { 40 | "type": "BasicBulletType", 41 | "collidesTiles": true, 42 | "collides" : true, 43 | "homingPower": 0.05, 44 | "homingRange": 10, 45 | "reloadMultiplier": 0.5, 46 | "ammoMultiplier": 5, 47 | 48 | "laserAbsorb": true, 49 | "hittable": false, 50 | "absorbable": false, 51 | 52 | "pierce": true, 53 | "hitEffect": "titanExplosion", 54 | "pierceCap": 4, 55 | "pierceBuilding": true, 56 | "status": "burning", 57 | "makeFire": true, 58 | "damage": 1000, 59 | "width": 12, 60 | "height": 30, 61 | "lifetime": 140, 62 | "speed": 4, 63 | "backColor": "ff0000", 64 | "frontColor": "ff0000", 65 | "fragBullets": 20, 66 | "fragSpread": 5, 67 | "fragRandomSpread": 0, 68 | "fragBullet": { 69 | "type": "LiquidBulletType", 70 | 71 | "laserAbsorb": true, 72 | "hittable": true, 73 | "absorbable": false, 74 | "status": "burning", 75 | "makeFire": true, 76 | "liquid": "slag", 77 | "despawnHit": true, 78 | "puddleSize": 300, 79 | "width": 8, 80 | "height": 20, 81 | "lifetime": 60, 82 | "speed": 2 83 | } 84 | }, 85 | "pyratite": { 86 | "type": "BasicBulletType", 87 | "collidesTiles": true, 88 | "collides" : true, 89 | "ammoMultiplier": 1, 90 | 91 | "laserAbsorb": true, 92 | "hittable": false, 93 | "absorbable": false, 94 | 95 | "pierce": true, 96 | "hitEffect": "titanExplosion", 97 | "pierceCap": 2, 98 | "pierceBuilding": true, 99 | "status": "burning", 100 | "makeFire": true, 101 | "damage": 250, 102 | "width": 12, 103 | "height": 30, 104 | "lifetime": 140, 105 | "speed": 4, 106 | "backColor": "ff6600", 107 | "frontColor": "ff6600", 108 | "fragBullets": 10, 109 | "fragSpread": 5, 110 | "fragRandomSpread": 0, 111 | "fragBullet": { 112 | "type": "BasicBulletType", 113 | 114 | "laserAbsorb": true, 115 | "hittable": true, 116 | "absorbable": false, 117 | "status": "burning", 118 | 119 | "homingPower": 0.1, 120 | "width": 6, 121 | "height": 15, 122 | "lifetime": 120, 123 | "speed": 2, 124 | "makeFire": true, 125 | "damage": 5, 126 | "splashDamage": 5, 127 | "splashDamageRadius": 20 128 | } 129 | }, 130 | "thorium": { 131 | "type": "BasicBulletType", 132 | "collidesTiles": true, 133 | "collides" : true, 134 | 135 | "laserAbsorb": true, 136 | "hittable": false, 137 | "absorbable": false, 138 | "reloadMultiplier": 2.0, 139 | "ammoMultiplier": 1, 140 | 141 | "pierce": true, 142 | "hitEffect": "titanExplosion", 143 | "pierceCap": 2, 144 | "pierceBuilding": true, 145 | "makeFire": true, 146 | "damage": 250, 147 | "width": 12, 148 | "height": 30, 149 | "lifetime": 140, 150 | "speed": 4, 151 | "backColor": "#faa5df", 152 | "frontColor": "#faa5df" 153 | } 154 | }, 155 | "drawer": { 156 | "type": "DrawTurret", 157 | "parts": [ 158 | {}, 159 | { 160 | "suffix": "-blade", 161 | "mirror": true, 162 | "under": true, 163 | "moveX": 2, 164 | "moveY": 1, 165 | "moveRot": -30, 166 | "progress": { 167 | "type": "warmup" 168 | } 169 | }, 170 | { 171 | "suffix": "-back", 172 | "mirror": false, 173 | "under": true, 174 | "moveX": 0, 175 | "moveY": -5, 176 | "progress": { 177 | "type": "warmup" 178 | } 179 | } 180 | ] 181 | }, 182 | "research": { 183 | "parent": "hail", 184 | "requirements": [ 185 | {"item": "lead", "amount": 1500}, 186 | {"item": "copper", "amount": 1500}, 187 | {"item": "titanium", "amount": 1500} 188 | ] 189 | } 190 | } 191 | -------------------------------------------------------------------------------- /content/blocks/turrets/gijima.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "ItemTurret", 3 | "localizedName": "[#ff]Gijima", 4 | "description": "the CIWS of mindustry", 5 | "health": 1000, 6 | "size": 2, 7 | "category": "turret", 8 | "requirements": [ 9 | "copper/200", 10 | "lead/200", 11 | "molten-alloy/10" 12 | ], 13 | "targetAir": true, 14 | "targetGround": true, 15 | "targetHealing": false, 16 | "outlineIcon": true, 17 | "recoil": 1, 18 | "shootY": 2, 19 | "coolantMultiplier": 12, 20 | "consumes":{ 21 | "coolant":{ 22 | "amount": 0.1 23 | } 24 | }, 25 | 26 | "shootSound": "shoot", 27 | "maxAmmo": 50, 28 | "rotateSpeed": 2, 29 | "reload": 4, 30 | "range": 230, 31 | "ammoTypes": { 32 | "pyratite": { 33 | "type": "BasicBulletType", 34 | "collidesTiles": true, 35 | "collides" : true, 36 | "homingPower": 0.1, 37 | "ammoMultiplier": 10, 38 | "reloadMultiplier": 1.0, 39 | 40 | "laserAbsorb": true, 41 | "hittable": true, 42 | "absorbable": true, 43 | "status": "burning", 44 | "makeFire": true, 45 | "damage": 10, 46 | "splashDamage": 10, 47 | "splashDamageRadius": 50, 48 | "width": 5, 49 | "height": 14, 50 | "lifetime": 30, 51 | "speed": 8, 52 | "backColor": "ff6600", 53 | "frontColor": "ffffff" 54 | }, 55 | "titanium": { 56 | "type": "BasicBulletType", 57 | "collidesTiles": true, 58 | "collides" : true, 59 | "ammoMultiplier": 5, 60 | "reloadMultiplier": 1.5, 61 | 62 | "laserAbsorb": true, 63 | "hittable": true, 64 | "absorbable": true, 65 | "damage": 10, 66 | "splashDamage": 10, 67 | "splashDamageRadius": 20, 68 | "width": 5, 69 | "height": 14, 70 | "lifetime": 30, 71 | "speed": 8, 72 | "backColor": "ff6600", 73 | "frontColor": "ffffff" 74 | }, 75 | "thorium": { 76 | "type": "BasicBulletType", 77 | "collidesTiles": true, 78 | "collides" : true, 79 | "ammoMultiplier": 5, 80 | "reloadMultiplier": 1.0, 81 | "laserAbsorb": true, 82 | "hittable": true, 83 | "absorbable": true, 84 | "damage": 10, 85 | "splashDamage": 15, 86 | "splashDamageRadius": 50, 87 | "width": 5, 88 | "height": 14, 89 | "lifetime": 30, 90 | "speed": 8, 91 | "backColor": "ff6600", 92 | "frontColor": "ffffff" 93 | }, 94 | "copper": { 95 | "type": "BasicBulletType", 96 | "collidesTiles": true, 97 | "collides" : true, 98 | "ammoMultiplier": 2, 99 | "reloadMultiplier": 1.0, 100 | 101 | "laserAbsorb": true, 102 | "hittable": true, 103 | "absorbable": true, 104 | 105 | "damage": 10, 106 | "width": 5, 107 | "height": 14, 108 | "lifetime": 30, 109 | "speed": 8, 110 | "backColor": "ff6600", 111 | "frontColor": "ffffff" 112 | }, 113 | "graphite": { 114 | "type": "BasicBulletType", 115 | "collidesTiles": true, 116 | "collides" : true, 117 | "ammoMultiplier": 5, 118 | "reloadMultiplier": 0.75, 119 | "laserAbsorb": true, 120 | "hittable": true, 121 | "absorbable": true, 122 | "splashDamage": 20, 123 | "splashDamageRadius": 20, 124 | "width": 5, 125 | "height": 14, 126 | "lifetime": 30, 127 | "speed": 8, 128 | "backColor": "ff6600", 129 | "frontColor": "ffffff" 130 | }, 131 | "coal": { 132 | "type": "BasicBulletType", 133 | "collidesTiles": true, 134 | "collides" : true, 135 | "ammoMultiplier": 5, 136 | "reloadMultiplier": 0.75, 137 | "laserAbsorb": true, 138 | "hittable": true, 139 | "absorbable": true, 140 | "status": "burning", 141 | "makeFire": true, 142 | "splashDamage": 10, 143 | "splashDamageRadius": 50, 144 | "width": 5, 145 | "height": 14, 146 | "lifetime": 30, 147 | "speed": 8, 148 | "backColor": "ff6600", 149 | "frontColor": "ffffff" 150 | }, 151 | }, 152 | "drawer": { 153 | "type": "DrawTurret", 154 | "parts": [ 155 | {}, 156 | { 157 | "suffix": "-blade", 158 | "mirror": true, 159 | "under": true, 160 | "moveX": 2, 161 | "moveY": 1, 162 | "moveRot": 30, 163 | "progress": { 164 | "type": "warmup" 165 | } 166 | }, 167 | { 168 | "suffix": "-back", 169 | "mirror": false, 170 | "under": true, 171 | "moveX": 0, 172 | "moveY": -3, 173 | "progress": { 174 | "type": "warmup" 175 | } 176 | } 177 | ] 178 | }, 179 | "research": { 180 | "parent": "salvo", 181 | "requirements": [ 182 | {"item": "lead", "amount": 1500}, 183 | {"item": "copper", "amount": 1500}, 184 | {"item": "titanium", "amount": 1500} 185 | ] 186 | } 187 | } 188 | -------------------------------------------------------------------------------- /content/blocks/turrets/isolde.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "ItemTurret", 3 | "localizedName": "[#ff66]Isolde", 4 | "description": "Fires drones", 5 | "health": 1000, 6 | "size": 2, 7 | "consumes": { 8 | "power": 5.0 9 | }, 10 | "range": 400, 11 | "reload": 600, 12 | "maxAmmo": 10, 13 | "ammoPerShot": 1, 14 | "ammoTypes": { 15 | "ai-core": { 16 | "spawnUnit": "healing-dorito", 17 | "ammoMultiplier": 1 18 | }, 19 | "molten-alloy": { 20 | "spawnUnit": "attacking-dorito", 21 | "ammoMultiplier": 1 22 | }, 23 | "magmium": { 24 | "spawnUnit": "exploding-dorito", 25 | "ammoMultiplier": 1 26 | }, 27 | "packet-flare": { 28 | "spawnUnit": "flare", 29 | "ammoMultiplier": 1, 30 | "reloadMultiplier": 5.0 31 | }, 32 | "packet-fossores": { 33 | "spawnUnit": "fossores", 34 | "ammoMultiplier": 1 35 | }, 36 | "packet-sterna": { 37 | "type": "BasicBulletType", 38 | "collidesTiles": true, 39 | "hittable": false, 40 | "collides" : false, 41 | "lifetime": 120, 42 | "speed": 3, 43 | "ammoMultiplier": 1 44 | "fragBullets": 1, 45 | "fragBullet": { 46 | "spawnUnit": "sterna", 47 | }, 48 | }, 49 | } 50 | "requirements": [ 51 | "copper/200", 52 | "lead/200", 53 | "silicon/100", 54 | "molten-alloy/10" 55 | ], 56 | "category": "turret", 57 | "research": { 58 | "parent": "ripple", 59 | "requirements": [ 60 | {"item": "lead", "amount": 2000}, 61 | {"item": "copper", "amount": 2000}, 62 | {"item": "titanium", "amount": 2000} 63 | ] 64 | } 65 | } 66 | -------------------------------------------------------------------------------- /content/blocks/turrets/prisma.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "ContinuousTurret", 3 | "localizedName": "[#ff66]Prisma", 4 | "description": "a high damage laser turret, with large built in cooling tank", 5 | "health": 3500, 6 | "size": 3, 7 | "liquidCapacity": 250, 8 | "category": "turret", 9 | "requirements": [ 10 | "copper/1000", 11 | "lead/1000", 12 | "titanium/500", 13 | "ai-core/100" 14 | ], 15 | "targetAir": true, 16 | "targetGround": true, 17 | "targetHealing": false, 18 | "outlineIcon": true, 19 | "range": 300, 20 | "loopSound": "minebeam", 21 | "loopSoundVolume": 2, 22 | "shootSound": "none", 23 | "cooldownTime" : 300, 24 | "recoil": 2, 25 | "rotateSpeed": 1.0, 26 | "minWarmup": 0.94, 27 | "shootWarmupSpeed": 0.05, 28 | "shootY": 1, 29 | "consumes": { 30 | "power": 40.0, 31 | "liquid": { 32 | "liquid": "cryofluid", 33 | "amount": 0.2 34 | } 35 | }, 36 | "shootType": { 37 | "type": "PointLaserBulletType", 38 | "sprite": "pyra-pyra-laser", 39 | "collidesTeam": true, 40 | "healAmount": 20.0, 41 | "damage": 50 42 | }, 43 | "drawer": { 44 | "type": "DrawTurret", 45 | "parts": [ 46 | {}, 47 | { 48 | "suffix": "-blade", 49 | "mirror": true, 50 | "under": true, 51 | "moveX": 4, 52 | "moveY": 2, 53 | "moveRot": -25, 54 | "progress": { 55 | "type": "warmup" 56 | } 57 | }, 58 | { 59 | "suffix": "-back", 60 | "mirror": false, 61 | "under": true, 62 | "moveX": 0, 63 | "moveY": -3, 64 | "progress": { 65 | "type": "warmup" 66 | } 67 | } 68 | ] 69 | }, 70 | "research": { 71 | "parent": "lancer", 72 | "requirements": [ 73 | {"item": "lead", "amount": 2500}, 74 | {"item": "copper", "amount": 2500}, 75 | {"item": "titanium", "amount": 2500}, 76 | {"item": "thorium", "amount": 2500} 77 | ] 78 | } 79 | } 80 | -------------------------------------------------------------------------------- /content/blocks/turrets/sanitatem.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "ContinuousTurret", 3 | "localizedName": "[#00ff]Sanitatem", 4 | "description": "A single target block healing turret", 5 | "health": 1500, 6 | "size": 2, 7 | "category": "turret", 8 | "requirements": [ 9 | "copper/150", 10 | "lead/150", 11 | "molten-alloy/20" 12 | ], 13 | "targetAir": false, 14 | "targetGround": false, 15 | "targetHealing": true, 16 | "outlineIcon": true, 17 | "range": 175, 18 | "loopSound": "minebeam", 19 | "loopSoundVolume": 1, 20 | "shootSound": "none", 21 | "cooldownTime" : 300, 22 | "recoil": 1, 23 | "rotateSpeed": 2, 24 | "shootY": -1.5, 25 | "consumes": { 26 | "power": 5.0 27 | }, 28 | "shootType": { 29 | "type": "PointLaserBulletType", 30 | "sprite": "pyra-pyra-laser", 31 | "collidesTeam": true, 32 | "healAmount": 20, 33 | "damage": 2.0 34 | }, 35 | "drawer": { 36 | "type": "DrawTurret", 37 | "parts": [ 38 | {}, 39 | { 40 | "suffix": "-shield", 41 | "mirror": true, 42 | "moveX": 1, 43 | "moveY": -1, 44 | "moveRot": -15, 45 | "progress": { 46 | "type": "warmup" 47 | } 48 | } 49 | ] 50 | }, 51 | 52 | "research": { 53 | "parent": "segment", 54 | "requirements": [ 55 | {"item": "lead", "amount": 1500}, 56 | {"item": "copper", "amount": 1500}, 57 | {"item": "titanium", "amount": 1500} 58 | ] 59 | } 60 | } 61 | -------------------------------------------------------------------------------- /content/blocks/turrets/vita.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "ContinuousTurret", 3 | "localizedName": "[#00ff]Vita", 4 | "description": "A small single target block healing turret \nSanitatem's brother", 5 | "health": 250, 6 | "size": 1, 7 | "category": "turret", 8 | "requirements": [ 9 | "copper/50", 10 | "lead/50", 11 | "pyratite/1" 12 | ], 13 | "targetAir": false, 14 | "targetGround": false, 15 | "targetHealing": true, 16 | "outlineIcon": true, 17 | "range": 100, 18 | "loopSound": "minebeam", 19 | "loopSoundVolume": 1, 20 | "shootSound": "none", 21 | "recoil": 1, 22 | "rotateSpeed": 2, 23 | "shootY": -1.5, 24 | "consumes": { 25 | "power": 1.0 26 | }, 27 | "shootType": { 28 | "type": "PointLaserBulletType", 29 | "sprite": "pyra-tiny-laser", 30 | "collidesTeam": true, 31 | "healAmount": 5, 32 | "damage": 1, 33 | }, 34 | "drawer": { 35 | "type": "DrawTurret", 36 | "parts": [ 37 | {}, 38 | { 39 | "suffix": "-shield", 40 | "mirror": true, 41 | "moveX": 1, 42 | "moveY": -1, 43 | "moveRot": -15, 44 | "progress": { 45 | "type": "warmup" 46 | } 47 | } 48 | ] 49 | }, 50 | 51 | "research": { 52 | "parent": "pyratite", 53 | "requirements": [ 54 | {"item": "lead", "amount": 500}, 55 | {"item": "copper", "amount": 500}, 56 | ] 57 | } 58 | } 59 | -------------------------------------------------------------------------------- /content/blocks/units/factories/tier-1-factory.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "UnitFactory", 3 | "name": "[#ff66]Pyratite units Factory", 4 | "health": 500, 5 | "description": "", 6 | "size": 3, 7 | "consumes": { 8 | "power": 2 9 | }, 10 | "plans": [ 11 | { 12 | "unit": "fossores", 13 | "requirements": [ 14 | {"item": "molten-alloy", "amount": 1}, 15 | {"item": "ai-core", "amount": 1}, 16 | {"item": "silicon", "amount": 100} 17 | ], 18 | "time": 600 19 | }, 20 | { 21 | "unit": "Acyuta", 22 | "requirements": [ 23 | {"item": "molten-alloy", "amount": 10}, 24 | {"item": "ai-core", "amount": 1}, 25 | {"item": "titanium", "amount": 100}, 26 | {"item": "silicon", "amount": 100} 27 | ], 28 | "time": 600 29 | }, 30 | { 31 | "unit": "curativo", 32 | "requirements": [ 33 | {"item": "ai-core", "amount": 10}, 34 | {"item": "titanium", "amount": 100}, 35 | {"item": "silicon", "amount": 100} 36 | ], 37 | "time": 600 38 | }, 39 | { 40 | "unit": "auxilium", 41 | "requirements": [ 42 | {"item": "ai-core", "amount": 1}, 43 | {"item": "titanium", "amount": 100}, 44 | {"item": "silicon", "amount": 100} 45 | ], 46 | "time": 600 47 | }, 48 | { 49 | "unit": "healing-dorito", 50 | "requirements": [ 51 | {"item": "titanium", "amount": 10}, 52 | {"item": "silicon", "amount": 10} 53 | ], 54 | "time": 600 55 | }, 56 | ], 57 | "requirements": [ 58 | { 59 | "item": "copper", 60 | "amount": 100 61 | }, 62 | { 63 | "item": "lead", 64 | "amount": 100 65 | }, 66 | { 67 | "item": "titanium", 68 | "amount": 100 69 | } 70 | ], 71 | "category": "units", 72 | "research": "regis" 73 | } 74 | -------------------------------------------------------------------------------- /content/blocks/units/factories/tier-2-reconstructor.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "reconstructor", 3 | "name": "[#ff66]Pyratite Additive Reconstructor", 4 | "description": "", 5 | "health": 500, 6 | "size": "3", 7 | "consumes": { 8 | "power": 3, 9 | "items": { 10 | "items": [ 11 | {"item": "titanium", "amount": 100}, 12 | {"item": "molten-alloy", "amount": 20}, 13 | {"item": "silicon", "amount": 200} 14 | ] 15 | } 16 | }, 17 | "constructTime": 600, 18 | "upgrades": [ 19 | [ 20 | "healing-dorito", "rose" 21 | ], 22 | [ 23 | "fossores", "sterna" 24 | ], 25 | [ 26 | "Acyuta", "Akalbir" 27 | ], 28 | [ 29 | "auxilium", "pellentesque" 30 | ], 31 | [ 32 | "curativo", "reparar" 33 | ] 34 | ], 35 | "requirements": [ 36 | { 37 | "item": "copper", 38 | "amount": 200 39 | }, 40 | { 41 | "item": "lead", 42 | "amount": 200 43 | }, 44 | { 45 | "item": "silicon", 46 | "amount": 100 47 | } 48 | ], 49 | "category": "units", 50 | "research": { 51 | "parent": "tier-1-factory", 52 | "requirements": [ 53 | {"item": "lead", "amount": 200}, 54 | {"item": "graphite", "amount": 100}, 55 | {"item": "silicon", "amount": 100} 56 | ] 57 | } 58 | } 59 | -------------------------------------------------------------------------------- /content/blocks/units/factories/tier-3-reconstructor.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "reconstructor", 3 | "name": "[#ff66]Pyratite Multiplicative Reconstructor", 4 | "description": "", 5 | "health": 1500, 6 | "size": "5", 7 | "consumes": { 8 | "power": 7, 9 | "items": { 10 | "items": [ 11 | {"item": "titanium", "amount": 200}, 12 | {"item": "molten-alloy", "amount": 50}, 13 | {"item": "ai-core", "amount": 5}, 14 | {"item": "silicon", "amount": 300} 15 | ] 16 | } 17 | }, 18 | "constructTime": 1800, 19 | "upgrades": [ 20 | [ 21 | "rose", "iris" 22 | ], 23 | [ 24 | "sterna", "arei" 25 | ], 26 | [ 27 | "Akalbir", "Amarsukh" 28 | ], 29 | [ 30 | "pellentesque", "gladius" 31 | ] 32 | ], 33 | "requirements": [ 34 | { 35 | "item": "lead", 36 | "amount": 700 37 | }, 38 | { 39 | "item": "titanium", 40 | "amount": 400 41 | }, 42 | { 43 | "item": "thorium", 44 | "amount": 600 45 | }, 46 | { 47 | "item": "silicon", 48 | "amount": 500 49 | } 50 | ], 51 | "category": "units", 52 | "research": { 53 | "parent": "tier-2-reconstructor", 54 | "requirements": [ 55 | {"item": "lead", "amount": 700}, 56 | {"item": "titanium", "amount": 400}, 57 | {"item": "thorium", "amount": 600}, 58 | {"item": "silicon", "amount": 500} 59 | ] 60 | } 61 | } 62 | -------------------------------------------------------------------------------- /content/blocks/units/factories/tier-4-reconstructor.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "reconstructor", 3 | "name": "[#ff66]Pyratite Exponential Reconstructor", 4 | "description": "", 5 | "health": 3500, 6 | "size": "7", 7 | "liquidCapacity": 500, 8 | "consumes": { 9 | "power": 15, 10 | "liquids": { 11 | "liquids": [ 12 | "cryofluid/0.75" 13 | ] 14 | }, 15 | "items": { 16 | "items": [ 17 | {"item": "plastanium", "amount": 1000}, 18 | {"item": "molten-alloy", "amount": 200}, 19 | {"item": "ai-core", "amount": 25}, 20 | {"item": "silicon", "amount": 1000} 21 | ] 22 | } 23 | }, 24 | "constructTime": 5400, 25 | "upgrades": [ 26 | [ 27 | "arei", "navis" 28 | ], 29 | [ 30 | "gladius", "eruca", 31 | ], 32 | [ 33 | "Amarsukh", "wip", 34 | ] 35 | ], 36 | "requirements": [ 37 | { 38 | "item": "lead", 39 | "amount": 2000 40 | }, 41 | { 42 | "item": "titanium", 43 | "amount": 2000 44 | }, 45 | { 46 | "item": "thorium", 47 | "amount": 1000 48 | }, 49 | { 50 | "item": "silicon", 51 | "amount": 1000 52 | }, 53 | { 54 | "item": "plastanium", 55 | "amount": 500 56 | } 57 | ], 58 | "category": "units", 59 | "research": { 60 | "parent": "tier-3-reconstructor", 61 | "requirements": [ 62 | {"item": "lead", "amount": 2000}, 63 | {"item": "titanium", "amount": 2000}, 64 | {"item": "thorium", "amount": 1000}, 65 | {"item": "silicon", "amount": 1000}, 66 | {"item": "plastanium", "amount": 500} 67 | ] 68 | } 69 | } 70 | -------------------------------------------------------------------------------- /content/blocks/units/factories/tier-5-reconstructor.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "reconstructor", 3 | "name": "[#ff66]Pyratite Tetrative Reconstructor", 4 | "health": 6000, 5 | "liquidCapacity": 1000, 6 | "description": "", 7 | "size": "9", 8 | "consumes": { 9 | "power": 25, 10 | "liquids": { 11 | "liquids": [ 12 | "cryofluid/3" 13 | ] 14 | }, 15 | "items": { 16 | "items": [ 17 | {"item": "plastanium", "amount": 1000}, 18 | {"item": "surge-alloy", "amount": 750}, 19 | {"item": "silicon", "amount": 1000}, 20 | {"item": "phase-fabric", "amount": 500}, 21 | {"item": "ai-core", "amount": 100}, 22 | {"item": "molten-alloy", "amount": 500} 23 | ] 24 | } 25 | }, 26 | "constructTime": 14400, 27 | "upgrades": [ 28 | [ 29 | "navis", "mothership" 30 | ], 31 | [ 32 | "eruca", "proelium" 33 | ] 34 | ], 35 | "requirements": [ 36 | { 37 | "item": "lead", 38 | "amount": 4000 39 | }, 40 | { 41 | "item": "thorium", 42 | "amount": 1000 43 | }, 44 | { 45 | "item": "silicon", 46 | "amount": 3000 47 | }, 48 | { 49 | "item": "plastanium", 50 | "amount": 750 51 | }, 52 | { 53 | "item": "phase-fabric", 54 | "amount": 750 55 | }, 56 | { 57 | "item": "ai-core", 58 | "amount": 750 59 | } 60 | ], 61 | "category": "units", 62 | "research": { 63 | "parent": "tier-4-reconstructor", 64 | "requirements": [ 65 | {"item": "lead", "amount": 4000}, 66 | {"item": "thorium", "amount": 1000}, 67 | {"item": "silicon", "amount": 3000}, 68 | {"item": "plastanium", "amount": 750}, 69 | {"item": "phase-fabric", "amount": 750}, 70 | {"item": "ai-core", "amount": 750} 71 | ] 72 | } 73 | } 74 | -------------------------------------------------------------------------------- /content/items/ai-core.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "[#00ff]AI core", 3 | "description": "main component for AI systems", 4 | "cost": 2.5, 5 | "color": "00ff00", 6 | "hardness": 5, 7 | "charge": 2, 8 | "research": { 9 | "parent": "molten-alloy", 10 | "requirements": [ 11 | {"item": "copper", "amount": 500}, 12 | {"item": "molten-alloy", "amount": 100} 13 | ] 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /content/items/magmium.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "[#ff]Magmium", 3 | "description": "A mass of multiple high temperature or combustible materials.\n Very unstable", 4 | "cost": 2.5, 5 | "color": "ff0000", 6 | "hardness": 10, 7 | "flammability": 7.5, 8 | "explosiveness": 2.5, 9 | "research": { 10 | "parent": "molten-alloy", 11 | "requirements": [ 12 | { 13 | "item": "pyratite", 14 | "amount": 250 15 | } 16 | ] 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /content/items/molten-alloy.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "[#ff66]Molten alloy", 3 | "description": "A pyratite alloy designed to be stronger then regular pyratite", 4 | "cost": 2.5, 5 | "color": "ff6600", 6 | "hardness": 5, 7 | "flammability": 0, 8 | "explosiveness": 2.0, 9 | "charge": 1, 10 | "research": { 11 | "parent": "pyratite", 12 | "requirements": [ 13 | { 14 | "item": "pyratite", 15 | "amount": 250 16 | } 17 | ] 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /content/items/packet-flare.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Flare [#545454]Clump", 3 | "description": "A Clump Containing all resources to produce a Flare", 4 | "cost": 2.5, 5 | "color": "545454", 6 | "hardness": 1, 7 | "flammability": 0, 8 | "explosiveness": 0, 9 | "research": { 10 | "parent": "unit-clumper", 11 | "requirements": [ 12 | { 13 | "item": "copper", 14 | "amount": 250 15 | } 16 | ] 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /content/items/packet-fossores.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "[#ff66]Fossores [][#545454]Clump", 3 | "description": "A Clump Containing all resources to produce a Fossores", 4 | "cost": 2.5, 5 | "color": "545454", 6 | "hardness": 1, 7 | "flammability": 0, 8 | "explosiveness": 0, 9 | "research": { 10 | "parent": "unit-clumper", 11 | "requirements": [ 12 | { 13 | "item": "copper", 14 | "amount": 250 15 | } 16 | ] 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /content/items/packet-sterna.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "[#ff66]Sterna [][#545454]Clump", 3 | "description": "A Clump Containing all resources to produce a Sterna", 4 | "cost": 2.5, 5 | "color": "545454", 6 | "hardness": 1, 7 | "flammability": 0, 8 | "explosiveness": 0, 9 | "research": { 10 | "parent": "[packet-fossores]", 11 | "requirements": [ 12 | { 13 | "item": "copper", 14 | "amount": 250 15 | } 16 | ] 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /content/liquids/plasmatic-slag.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Plasmatic slag", 3 | "description": "Super heated magmium and slag \n[#ff]unstable fluid", 4 | "heatCapacity": 1.0, 5 | "flammability": 0.0, 6 | "explosiveness": 2.0, 7 | "viscosity": 0.5, 8 | "temperature": 5.0, 9 | "color": "#ff4400", 10 | "research": "magmium" 11 | } 12 | -------------------------------------------------------------------------------- /content/status/build.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Build Boost", 3 | "description": "build faster", 4 | "buildSpeedMultiplier": 2.0 5 | } -------------------------------------------------------------------------------- /content/status/costRestore.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "[#c1c3d4]Costing[] [#a7b6d4]Restore", 3 | "description": "[#c1c3d4]Hea[][#a7b6d4]ls[] [#c1c3d4]Yo[][#a7b6d4]u[] [#c1c3d4]Bu[][#a7b6d4]t[] [#c1c3d4]Us[][#a7b6d4]es[] [#c1c3d4]So[][#a7b6d4]me[] [#c1c3d4]O[][#a7b6d4]f[] [#c1c3d4]Yo[][#a7b6d4]ur[] [#c1c3d4]Pow[][#a7b6d4]er[] \n[#c1c3d4]Rese[][#a7b6d4]rves[]", 4 | "speedMultiplier": 0.4, 5 | "damage": -1.0 6 | } 7 | -------------------------------------------------------------------------------- /content/status/energyDrain.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "[#c1c3d4]Energy[] [#a7b6d4]Drain", 3 | "description": "[#c1c3d4]Yo[][#a7b6d4]ur[] [#c1c3d4]Pow[][#a7b6d4]er[] [#c1c3d4]Rese[][#a7b6d4]rves[] [#c1c3d4]Wa[][#a7b6d4]s[] [#c1c3d4]Suc[][#a7b6d4]ked[] [#c1c3d4]Fr[][#a7b6d4]om[] [#c1c3d4]Yo[][#a7b6d4]u[] \n [orange]Build stuned[]", 4 | "buildSpeedMultiplier": 0.0, 5 | "reloadMultiplier": 0.80, 6 | "speedMultiplier": 0.50 7 | } 8 | -------------------------------------------------------------------------------- /content/units/drone/attacking-dorito.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "flying", 3 | "flying": true, 4 | "localizedName": "[orange]Edge", 5 | "description": "A drone that attacks nearby enemies with a burst of Super Heated Plasma", 6 | "lowAltitude": true, 7 | "defaultController": "FlyingAI", 8 | "health": 100, 9 | "canAttack": true, 10 | "useUnitCap": true, 11 | "isEnemy": false, 12 | "speed": 2.5, 13 | "accel": 0.058, 14 | "drag": 0.017, 15 | "weapons" : [ 16 | { 17 | "x": 0, 18 | "y": 0, 19 | "mirror": false, 20 | "top": false, 21 | "rotate": true, 22 | "rotateSpeed": 1, 23 | "reload": 180, 24 | "inaccuracy": 0, 25 | "shoot": { 26 | "shots": 20, 27 | "shotDelay": 1 28 | }, 29 | "bullet": { 30 | "type": "ContinuousFlameBulletType", 31 | "length": 140, 32 | "width": 3, 33 | "damage": 5, 34 | "lifetime": 10, 35 | "speed": 0 36 | } 37 | } 38 | ], 39 | "research": { 40 | "parent": "tier-1-factory", 41 | "requirements": [ 42 | {"item": "lead", "amount": 500}, 43 | {"item": "copper", "amount": 500}, 44 | {"item": "silicon", "amount": 500} 45 | ] 46 | }, 47 | } 48 | -------------------------------------------------------------------------------- /content/units/drone/exploding-dorito.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "flying", 3 | "flying": true, 4 | "localizedName": "[purple]Boom", 5 | "description": "*KABoom* ur ded", 6 | "defaultController": "MissileAI", 7 | "playerControllable": false, 8 | "createWreck": false, 9 | "createScorch": false, 10 | "logicControllable": false, 11 | "lowAltitude": true, 12 | "outlineColor": 222222, 13 | "health": 100, 14 | "canAttack": true, 15 | "useUnitCap": false, 16 | "isEnemy": true, 17 | "speed": 2, 18 | "accel": 0.058, 19 | "drag": 0.017, 20 | "weapons": [ 21 | { 22 | "shootOnDeath": true, 23 | "reload": 24, 24 | "shootCone": 180, 25 | "ejectEffect": "none", 26 | "shootSound": "explosion", 27 | "x": 0, 28 | "shootY": 0, 29 | "bullet": { 30 | "type": "BulletType", 31 | "collides": false, 32 | "collidesTiles": false, 33 | "hitSound": "explosion", 34 | "overrideRange": 120, 35 | "speed": 0, 36 | "hitEffect": "none", 37 | "despawnEffect": "titanSmoke", 38 | "splashDamageRadius": 80, 39 | "instantDisappear": true, 40 | "splashDamage": 150, 41 | "hittable": false, 42 | "killShooter": true, 43 | "collidesAir": true, 44 | "fragBullets": 10, 45 | "fragBullet": { 46 | "type": "LiquidBulletType", 47 | "laserAbsorb": true, 48 | "hittable": true, 49 | "absorbable": false, 50 | "status": "burning", 51 | "makeFire": true, 52 | "liquid": "slag", 53 | "despawnHit": true, 54 | "puddleSize": 300, 55 | "width": 8, 56 | "height": 20, 57 | "lifetime": 60, 58 | "speed": 2 59 | } 60 | } 61 | }, 62 | { 63 | "reload": 24, 64 | "ejectEffect": "none", 65 | "shootSound": "none", 66 | "alwaysContinuous": true, 67 | "ignoreRotation": true, 68 | "alwaysShooting": true, 69 | "shoot": { 70 | "firstShotDelay": 600 71 | }, 72 | "x": 0, 73 | "shootY": 0, 74 | "bullet": { 75 | "type": "BulletType", 76 | "collides": false, 77 | "collidesTiles": false, 78 | "hitSound": "none", 79 | "speed": 0, 80 | "hitEffect": "none", 81 | "despawnEffect": "none", 82 | "instantDisappear": true, 83 | "hittable": false, 84 | "killShooter": true, 85 | "collidesAir": false, 86 | "collidesGround": false 87 | } 88 | } 89 | ], 90 | "research": { 91 | "parent": "tier-1-factory", 92 | "requirements": [ 93 | {"item": "lead", "amount": 500}, 94 | {"item": "copper", "amount": 500}, 95 | {"item": "silicon", "amount": 500} 96 | ] 97 | }, 98 | } 99 | -------------------------------------------------------------------------------- /content/units/drone/healing-dorito.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "flying", 3 | "flying": true, 4 | "localizedName": "[green]Pedal", 5 | "description": "A drone that follows units and heals", 6 | "lowAltitude": true, 7 | "health": 100, 8 | "canAttack": false, 9 | "useUnitCap": false, 10 | "isEnemy": false, 11 | "speed": 2.5, 12 | "accel": 0.058, 13 | "drag": 0.017, 14 | "defaultController": "DefenderAI", 15 | "weapons": [ 16 | { 17 | "type": "PointDefenseWeapon", 18 | "x": 0, 19 | "y": 0, 20 | "mirror": false, 21 | "reload": 4, 22 | "targetInterval": 1, 23 | "targetSwitchInterval": 1, 24 | "bullet": { 25 | "type": "BulletType", 26 | "shootEffect": "sparkShoot", 27 | "hitEffect": "pointHit", 28 | "maxRange": 80, 29 | "damage": 4 30 | } 31 | }, 32 | { 33 | "type": "RepairBeamWeapon", 34 | "name": "small-repair-point", 35 | "x": 0, 36 | "y": -3, 37 | "beamWidth": 0.5, 38 | "mirror": false, 39 | "repairSpeed": 0.25, 40 | "bullet": { 41 | "maxRange": 75 42 | } 43 | } 44 | ], 45 | "research": { 46 | "parent": "tier-1-factory", 47 | "requirements": [ 48 | {"item": "lead", "amount": 500}, 49 | {"item": "copper", "amount": 500}, 50 | {"item": "silicon", "amount": 500} 51 | ] 52 | }, 53 | } 54 | -------------------------------------------------------------------------------- /content/units/drone/iris.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "flying", 3 | "flying": true, 4 | "localizedName": "[green]Iris", 5 | "description": "A drone that follows units and heals", 6 | "lowAltitude": true, 7 | "health": 2000, 8 | "canAttack": false, 9 | "useUnitCap": true, 10 | "isEnemy": false, 11 | "hitSize": 16, 12 | "engineOffset": 9, 13 | "engineSize": 3, 14 | "armor": 25, 15 | "itemCapacity": 100, 16 | "speed": 2.5, 17 | "accel": 0.06, 18 | "drag": 0.017, 19 | "drawBuildBeam": true, 20 | "buildSpeed": 2, 21 | "mineSpeed": 5, 22 | "mineTier": 4, 23 | "defaultController": "DefenderAI", 24 | "weapons": [ 25 | { 26 | "type": "PointDefenseWeapon", 27 | "x": 4, 28 | "y": -3, 29 | "mirror": true, 30 | "reload": 3, 31 | "targetInterval": 1, 32 | "targetSwitchInterval": 1, 33 | "bullet": { 34 | "type": "BulletType", 35 | "shootEffect": "sparkShoot", 36 | "hitEffect": "pointHit", 37 | "maxRange": 160, 38 | "damage": 15 39 | } 40 | }, 41 | { 42 | "type": "PointDefenseWeapon", 43 | "x": -2, 44 | "y": -3, 45 | "mirror": true, 46 | "reload": 3, 47 | "targetInterval": 1, 48 | "targetSwitchInterval": 1, 49 | "bullet": { 50 | "type": "BulletType", 51 | "shootEffect": "sparkShoot", 52 | "hitEffect": "pointHit", 53 | "maxRange": 160, 54 | "damage": 15 55 | } 56 | } 57 | ], 58 | "research": { 59 | "parent": "rose", 60 | "requirements": [ 61 | {"item": "lead", "amount": 500}, 62 | {"item": "copper", "amount": 500}, 63 | {"item": "silicon", "amount": 500} 64 | ] 65 | }, 66 | "abilities": [ 67 | { 68 | "type": "SpawnDeathAbility", 69 | "amount": 1, 70 | "faceOutwards": true, 71 | "unit": "rose" 72 | }, 73 | { 74 | "type": "EnergyFieldAbility", 75 | "effectRadius": 1, 76 | "range": 120, 77 | "damage": 5, 78 | "reload": 30, 79 | "maxTargets": 10 80 | } 81 | ] 82 | } 83 | -------------------------------------------------------------------------------- /content/units/drone/rose.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "flying", 3 | "flying": true, 4 | "localizedName": "[green]Rose", 5 | "description": "A drone that follows units and heals", 6 | "lowAltitude": true, 7 | "health": 1000, 8 | "canAttack": false, 9 | "useUnitCap": true, 10 | "isEnemy": false, 11 | "hitSize": 16, 12 | "engineOffset": 9, 13 | "engineSize": 3, 14 | "armor": 10, 15 | "itemCapacity": 50, 16 | "speed": 2.5, 17 | "accel": 0.06, 18 | "drag": 0.017, 19 | "defaultController": "DefenderAI", 20 | "weapons": [ 21 | { 22 | "type": "PointDefenseWeapon", 23 | "x": 4, 24 | "y": -3, 25 | "mirror": true, 26 | "reload": 4, 27 | "targetInterval": 2, 28 | "targetSwitchInterval": 5, 29 | "bullet": { 30 | "type": "BulletType", 31 | "shootEffect": "sparkShoot", 32 | "hitEffect": "pointHit", 33 | "maxRange": 160, 34 | "damage": 8 35 | } 36 | }, 37 | { 38 | "type": "RepairBeamWeapon", 39 | "name": "small-repair-point", 40 | "x": 0, 41 | "y": -3, 42 | "beamWidth": 0.5, 43 | "mirror": false, 44 | "repairSpeed": 0.5, 45 | "bullet": { 46 | "maxRange": 75 47 | } 48 | } 49 | ], 50 | "research": { 51 | "parent": "healing-dorito", 52 | "requirements": [ 53 | {"item": "lead", "amount": 500}, 54 | {"item": "copper", "amount": 500}, 55 | {"item": "silicon", "amount": 500} 56 | ] 57 | }, 58 | "abilities": [ 59 | { 60 | "type": "SpawnDeathAbility", 61 | "amount": 1, 62 | "faceOutwards": true, 63 | "unit": "healing-dorito" 64 | } 65 | ] 66 | } -------------------------------------------------------------------------------- /content/units/ground-type/Acyuta.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "tank", 3 | "localizedName": "[#c1c3d4]Acy[][#a7b6d4]uta", 4 | "flying": false, 5 | "health": 700, 6 | "armor": 8, 7 | "faceTarget": false, 8 | "outlineRadius": 3, 9 | "crushDamage": 0.5, 10 | "hitSize": 8, 11 | "speed": 0.75, 12 | "omniMovement": false, 13 | "defaultController": "GroundAI", 14 | "range": 37.5, 15 | "treadRects": [ 16 | { 17 | "x": 6, 18 | "y": -25, 19 | "width": 14, 20 | "height": 51 21 | } 22 | ], 23 | "weapons": [ 24 | { 25 | "name": "Acyuta-weapon", 26 | "ejectEffect": "casing1", 27 | "x": 0, 28 | "y": 0, 29 | "mirror": false, 30 | "reload": 20, 31 | "rotate": true, 32 | "shootSound": "mediumCannon", 33 | "inaccuracy": 12, 34 | "shoot": { 35 | "shots": 6 36 | }, 37 | "bullet": { 38 | "type": "ShrapnelBulletType", 39 | "width": 10, 40 | "length": 8, 41 | "damage": 3, 42 | "speed": 0, 43 | "lifetime": 1, 44 | "fragRandomSpread": 5, 45 | "fragBullets": 2, 46 | "fragBullet": { 47 | "type": "BulletType", 48 | "despawnSound": "shootAlt", 49 | "hittable": false, 50 | "reflectable": false, 51 | "absorbable": false, 52 | "collides": false, 53 | "collideTerrain": true, 54 | "hitEffect": "none", 55 | "despawnEffect": "none", 56 | "damage": 0, 57 | "speed": 14, 58 | "lifetime": 2.5, 59 | "fragRandomSpread": 40, 60 | "fragBullets": 4, 61 | "fragBullet": { 62 | "type": "ShrapnelBulletType", 63 | "width": 10, 64 | "length": 8, 65 | "damage": 3, 66 | "speed": 0, 67 | "lifetime": 1, 68 | "hitEffect": "none", 69 | "despawnEffect": "none" 70 | } 71 | } 72 | } 73 | } 74 | ], 75 | "research": { 76 | "parent": "tier-1-factory", 77 | "requirements": [ 78 | {"item": "lead", "amount": 500}, 79 | {"item": "copper", "amount": 500}, 80 | {"item": "silicon", "amount": 500}, 81 | {"item": "titanium", "amount": 500} 82 | ] 83 | } 84 | } 85 | 86 | -------------------------------------------------------------------------------- /content/units/ground-type/Akalbir.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "tank", 3 | "localizedName": "[#c1c3d4]Akal[][#a7b6d4]bir", 4 | "flying": false, 5 | "health": 2100, 6 | "armor": 10, 7 | "faceTarget": false, 8 | "outlineRadius": 3, 9 | "crushDamage": 2, 10 | "hitSize": 12, 11 | "speed": 0.6, 12 | "omniMovement": false, 13 | "defaultController": "GroundAI", 14 | "range": 60, 15 | "immunities": [ 16 | "burning" 17 | ], 18 | "treadRects": [ 19 | { 20 | "x": 13, 21 | "y": -42, 22 | "width": 18, 23 | "height": 83 24 | } 25 | ], 26 | "weapons": [ 27 | { 28 | "name": "Akalbir-weapon", 29 | "x": 5, 30 | "y": 5, 31 | "mirror": true, 32 | "reload": 20, 33 | "rotate": true, 34 | "shootSound": "flame2", 35 | "inaccuracy": 0, 36 | "bullet": { 37 | "type": "BulletType", 38 | "status": "burning", 39 | "statusDuration": 240, 40 | "shootEffect": "shootSmallFlame", 41 | "hitEffect": "hitFlameSmall", 42 | "despawnEffect": "none", 43 | "damage": 50, 44 | "hitSize": 7, 45 | "lifetime": 30, 46 | "pierce": true, 47 | "pierceBuilding": true, 48 | "pierceCap": 2, 49 | "keepVelocity": false, 50 | "hittable": false 51 | } 52 | }, 53 | { 54 | "name": "Akalbir-weapon", 55 | "x": 5, 56 | "y": -5, 57 | "mirror": true, 58 | "reload": 20, 59 | "rotate": true, 60 | "shootSound": "flame2", 61 | "inaccuracy": 0, 62 | "shoot": { 63 | "firstShotDelay": 5 64 | }, 65 | "bullet": { 66 | "type": "BulletType", 67 | "status": "burning", 68 | "statusDuration": 240, 69 | "shootEffect": "shootSmallFlame", 70 | "hitEffect": "hitFlameSmall", 71 | "despawnEffect": "none", 72 | "damage": 50, 73 | "hitSize": 7, 74 | "lifetime": 30, 75 | "pierce": true, 76 | "pierceBuilding": true, 77 | "pierceCap": 2, 78 | "keepVelocity": false, 79 | "hittable": false 80 | } 81 | } 82 | ], 83 | "research": { 84 | "parent": "Acyuta", 85 | "requirements": [ 86 | {"item": "lead", "amount": 500}, 87 | {"item": "copper", "amount": 500}, 88 | {"item": "silicon", "amount": 500}, 89 | {"item": "titanium", "amount": 500} 90 | ] 91 | } 92 | } 93 | 94 | -------------------------------------------------------------------------------- /content/units/ground-type/Amarsukh.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "tank", 3 | "localizedName": "[#c1c3d4]Amar[][#a7b6d4]sukh", 4 | "flying": false, 5 | "health": 6000, 6 | "armor": 12, 7 | "faceTarget": false, 8 | "outlineRadius": 3, 9 | "crushDamage": 3.5, 10 | "hitSize": 18, 11 | "speed": 0.55, 12 | "omniMovement": false, 13 | "defaultController": "GroundAI", 14 | "range": 60, 15 | "immunities": [ 16 | "energyDrain" 17 | ], 18 | "treadRects": [ 19 | { 20 | "x": 15, 21 | "y": -40, 22 | "width": 29, 23 | "height": 104 24 | } 25 | ], 26 | "weapons": [ 27 | { 28 | "name": "Amar-weapon-1", 29 | "x": 0, 30 | "y": 0, 31 | "shootX": 3.5, 32 | "mirror": true, 33 | "reload": 30, 34 | "rotate": true, 35 | "shootSound": "blaster", 36 | "inaccuracy": 0, 37 | "bullet": { 38 | "type": "LaserBulletType", 39 | "status": "energyDrain", 40 | "statusDuration": 240, 41 | "length": 100, 42 | "damage": 20, 43 | "knockback": 2, 44 | "lifetime": 10, 45 | "speed": 0, 46 | "colors": ["a7b6d4", "c1c3d4", "FFFFFF"], 47 | "fragBullets": 1, 48 | "fragBullet": { 49 | "type": "BulletType", 50 | "hitEffect": "none", 51 | "despawnEffect": "none", 52 | "shootEffect": "none", 53 | "smokeEffect": "none", 54 | "hittable": false, 55 | "reflectable": false, 56 | "absorbable": false, 57 | "collides": false, 58 | "width": 1, 59 | "height": 1, 60 | "damage": 0, 61 | "lifetime": 30, 62 | "speed": 10 63 | } 64 | } 65 | }, 66 | { 67 | "name": "Amar-weapon-2", 68 | "x": 0, 69 | "y": 0, 70 | "mirror": false, 71 | "reload": 60, 72 | "rotate": true, 73 | "chargeSound": "plasmadrop", 74 | "shootSound": "plasmaboom", 75 | "inaccuracy": 0, 76 | "shoot": {"firstShotDelay": 30}, 77 | "bullet": { 78 | "type": "BasicBulletType", 79 | "sprite": "large-orb", 80 | "backSprite": "large-orb-back", 81 | "status": "energyDrain", 82 | "statusDuration": 240, 83 | "trailEffect": "none", 84 | "trailWidth": 7, 85 | "trailLength": 22, 86 | "trailColor": "c1c3d4", 87 | "weaveScale": 8, 88 | "weaveMag": 8, 89 | "homingRange": 80, 90 | "homingPower": 4, 91 | "homingDelay": 20, 92 | "backColor": "c1c3d4", 93 | "frontColor": "a7b6d4", 94 | "pierce": true, 95 | "pierceBuilding": true, 96 | "laserAbsorb": true, 97 | "hittable": false, 98 | "pierceCap": 2, 99 | "keepVelocity": false, 100 | "shrinkY": 0, 101 | "shrinkX": 0, 102 | "width": 15, 103 | "height": 15, 104 | "damage": 120, 105 | "lifetime": 300, 106 | "speed": 1 107 | } 108 | }, 109 | { 110 | "name": "Amar-weapon-3", 111 | "x": 0, 112 | "y": 0, 113 | "mirror": false, 114 | "reload": 30, 115 | "rotate": true, 116 | "shootSound": "blaster", 117 | "inaccuracy": 0, 118 | "recoil": 0, 119 | "bullet": { 120 | "type": "BulletType", 121 | "hitEffect": "none", 122 | "despawnEffect": "none", 123 | "shootEffect": "none", 124 | "smokeEffect": "none", 125 | "hittable": false, 126 | "reflectable": false, 127 | "absorbable": false, 128 | "collides": false, 129 | "width": 1, 130 | "height": 1, 131 | "damage": 0, 132 | "lifetime": 30, 133 | "speed": 10 134 | } 135 | } 136 | ], 137 | "abilities": [ 138 | { 139 | "type": "StatusFieldAbility", 140 | "effect": "costRestore", 141 | "range": 100, 142 | "reload": 2400, 143 | "duration": 300 144 | } 145 | ], 146 | "research": { 147 | "parent": "Akalbir", 148 | "requirements": [ 149 | {"item": "lead", "amount": 500}, 150 | {"item": "copper", "amount": 500}, 151 | {"item": "silicon", "amount": 500}, 152 | {"item": "titanium", "amount": 500} 153 | ] 154 | } 155 | } 156 | 157 | -------------------------------------------------------------------------------- /content/units/ground-type/curativo.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "tank", 3 | "localizedName": "[#00ff00]Curativo", 4 | "description": "A great mining tank", 5 | "flying": false, 6 | "health": 500, 7 | "armor": 1, 8 | "mineSpeed": 15, 9 | "mineTier": 5, 10 | "buildSpeed": 1, 11 | "itemCapacity": 250, 12 | "faceTarget": true, 13 | "outlineRadius": 1, 14 | "crushDamage": 5.0, 15 | "hitSize": 16, 16 | "speed": 0.75, 17 | "omniMovement": false, 18 | "defaultController": "MinerAI", 19 | "weapons": [ 20 | { 21 | "x": 0, 22 | "y": 15, 23 | "reload": 10, 24 | "mirror": false, 25 | "rotate": true, 26 | "shootSound": "none", 27 | "bullet": { 28 | "type": "LightningBulletType", 29 | "damage": 10, 30 | "buildingDamageMultiplier": 1, 31 | "collidesTeam": true, 32 | "healAmount": 10, 33 | "lightningLength": 5, 34 | "lightningColor": "98ffa9" 35 | } 36 | } 37 | ], 38 | "treadRects": [ 39 | { 40 | "x": 8, 41 | "y": -30, 42 | "width": 14, 43 | "height": 88 44 | } 45 | ], 46 | "abilities": [ 47 | { 48 | "type": "StatusFieldAbility", 49 | "effect": "none" 50 | "reload": 15 51 | "effectY": 15 52 | "parentizeEffects": true, 53 | "activeEffect": { 54 | "followParent": true 55 | "rotWithParent": true 56 | "particles": 1 57 | "lifetime": 20 58 | "length": 0 59 | "region": "pyra-curativo-drill-spinner" 60 | "sizeFrom": 3 61 | "sizeTo": 3 62 | "spin": 16 63 | "layer": 95.1 64 | } 65 | } 66 | ], 67 | "research": { 68 | "parent": "tier-1-factory", 69 | "requirements": [ 70 | {"item": "lead", "amount": 500}, 71 | {"item": "copper", "amount": 500}, 72 | {"item": "silicon", "amount": 500}, 73 | {"item": "titanium", "amount": 500} 74 | ] 75 | } 76 | } 77 | -------------------------------------------------------------------------------- /content/units/ground-type/reparar.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "tank", 3 | "localizedName": "[#00ff00]Reparar", 4 | "description": "A great mining and support tank", 5 | "flying": false, 6 | "health": 800, 7 | "armor": 5, 8 | "mineSpeed": 15, 9 | "mineTier": 5, 10 | "buildSpeed": 2, 11 | "itemCapacity": 500, 12 | "faceTarget": true, 13 | "outlineRadius": 1, 14 | "crushDamage": 5.0, 15 | "hitSize": 16, 16 | "speed": 0.75, 17 | "omniMovement": false, 18 | "treadRects": [ 19 | { 20 | "x": 8, 21 | "y": -30, 22 | "width": 14, 23 | "height": 88 24 | } 25 | ], 26 | "abilities": [ 27 | { 28 | "type": "StatusFieldAbility", 29 | "effect": "none" 30 | "reload": 15 31 | "effectY": 15 32 | "parentizeEffects": true, 33 | "activeEffect": { 34 | "followParent": true 35 | "rotWithParent": true 36 | "under": true 37 | "particles": 1 38 | "lifetime": 20 39 | "length": 0 40 | "region": "pyra-curativo-drill-spinner" 41 | "sizeFrom": 3 42 | "sizeTo": 3 43 | "spin": 16 44 | "layer": 95.1 45 | } 46 | }, 47 | { 48 | "type": "EnergyFieldAbility", 49 | "x": 0, 50 | "y": -2, 51 | "effectRadius": 1, 52 | "range": 120, 53 | "damage": 5, 54 | "healPercent": 5, 55 | "reload": 60, 56 | "maxTargets": 10 57 | }, 58 | ], 59 | "research": { 60 | "parent": "curativo", 61 | "requirements": [ 62 | {"item": "lead", "amount": 500}, 63 | {"item": "copper", "amount": 500}, 64 | {"item": "silicon", "amount": 500}, 65 | {"item": "titanium", "amount": 500} 66 | ] 67 | } 68 | } 69 | -------------------------------------------------------------------------------- /content/units/ground-type/wip.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "tank", 3 | "localizedName": "[#c1c3d4]wip", 4 | "flying": false, 5 | "health": 12000, 6 | "armor": 20, 7 | "faceTarget": false, 8 | "mineSpeed": 5, 9 | "mineTier": 4, 10 | "buildSpeed": 1, 11 | "itemCapacity": 250, 12 | "mineHardnessScaling": true, 13 | "drawBuildBeam": true, 14 | "outlineRadius": 3, 15 | "crushDamage": 4.0, 16 | "hitSize": 18, 17 | "speed": 0.55, 18 | "omniMovement": false, 19 | "defaultController": "GroundAI", 20 | "range": 10, 21 | "immunities": [ 22 | "energyDrain" 23 | ], 24 | "treadRects": [ 25 | { 26 | "x": 15, 27 | "y": -40, 28 | "width": 29, 29 | "height": 104 30 | } 31 | ], 32 | "weapons": [ 33 | { 34 | "name": "cannon", 35 | "reload": 60, 36 | "x": 0, 37 | "y": 0, 38 | "rotate": true, 39 | "mirror": false, 40 | "velocityRnd": 0.2, 41 | "shootSound": "missile", 42 | "inaccuracy": 0, 43 | "bullet": { 44 | "type": "BulletType", 45 | "shootEffect": "sparkShoot", 46 | "smokeEffect": "shootSmokeTitan", 47 | "shake": 1, 48 | "speed": 0, 49 | "keepVelocity": false, 50 | "spawnUnit": "wip-missile" 51 | } 52 | }, 53 | ], 54 | "research": { 55 | "parent": "Akalbir", 56 | "requirements": [ 57 | {"item": "lead", "amount": 500}, 58 | {"item": "copper", "amount": 500}, 59 | {"item": "silicon", "amount": 500}, 60 | {"item": "titanium", "amount": 500} 61 | ] 62 | }, 63 | "abilities": [ 64 | { 65 | "type": "EnergyFieldAbility", 66 | "effectRadius": 1, 67 | "range": 90, 68 | "damage": 5, 69 | "reload": 30, 70 | "maxTargets": 10 71 | }, 72 | ] 73 | } 74 | 75 | -------------------------------------------------------------------------------- /content/units/interceptor-type/arei.json: -------------------------------------------------------------------------------- 1 | { 2 | "localizedName": "[#ff66]AREI", 3 | "description": "A mega-quasar hybrid it has powerful single laser and advanced drill capable of mining all ores", 4 | "type": "payload", 5 | "lowAltitude": true, 6 | "mineSpeed": 3, 7 | "mineTier": 6, 8 | "canAttack": true, 9 | "buildSpeed": 2, 10 | "hitSize": 16, 11 | "engineOffset": 11, 12 | "engineSize": 3, 13 | "payloadCapacity": 256, 14 | "armor": 5, 15 | "itemCapacity": 100, 16 | "speed": 2.5, 17 | "accel": 0.058, 18 | "drag": 0.017, 19 | "drawBuildBeam": true, 20 | "health": 500, 21 | "mineHardnessScaling": true, 22 | "defaultController": "FlyingAI", 23 | "flying": true, 24 | "weapons": [ 25 | { 26 | "name": "arei-weapon", 27 | "x": 0, 28 | "y": 0, 29 | "mirror": false, 30 | "reload": 300, 31 | "rotate": false, 32 | "continuous": true, 33 | "shootSound": "laserblast", 34 | "shootSoundVolume": 0.25, 35 | "shootStatusDuration": "240", 36 | "shootStatus": "slow", 37 | "bullet": { 38 | "type": "ContinuousLaserBulletType", 39 | "length": 200, 40 | "width": 2, 41 | "damage": 50, 42 | "lifetime": 120, 43 | "collidesTeam": true, 44 | "healPercent": 2, 45 | "damageInterval": 20, 46 | "colors": ["70d581", "98ffa9", "ffffff"], 47 | "fadeTime": 30 48 | } 49 | } 50 | ], 51 | "research": { 52 | "parent": "sterna", 53 | "requirements": [ 54 | {"item": "lead", "amount": 2000}, 55 | {"item": "copper", "amount": 2000}, 56 | {"item": "silicon", "amount": 2000}, 57 | {"item": "titanium", "amount": 2000} 58 | ] 59 | }, 60 | "abilities": [ 61 | { 62 | "type": "SpawnDeathAbility", 63 | "amount": 1, 64 | "faceOutwards": true, 65 | "unit": "fossores" 66 | }, 67 | { 68 | "type": "ForceFieldAbility", 69 | "radius": 50, 70 | "regen": 0.5, 71 | "max": 500, 72 | "cooldown": 600 73 | } 74 | ] 75 | } 76 | -------------------------------------------------------------------------------- /content/units/interceptor-type/delver.json: -------------------------------------------------------------------------------- 1 | { 2 | "localizedName": "[#ff66]Delver", 3 | "description": "A Fossores variant. Built to protect Regis cores, code name lil oct", 4 | "type": "flying", 5 | "lowAltitude": true, 6 | "mineSpeed": 5, 7 | "mineTier": 6, 8 | "canAttack": false, 9 | "buildSpeed": 1, 10 | "hitSize": 8, 11 | "engineOffset": 5, 12 | "engineSize": 2, 13 | "armor": 0, 14 | "itemCapacity": 50, 15 | "speed": 2.5, 16 | "accel": 0.06, 17 | "drag": 0.017, 18 | "drawBuildBeam": true, 19 | "health": 200, 20 | "mineHardnessScaling": true, 21 | "flying": true, 22 | "weapons": [ 23 | { 24 | "type": "RepairBeamWeapon", 25 | "rotate": true, 26 | "mirror": false, 27 | "x": 0, 28 | "y": 0, 29 | "beamWidth": 0.6, 30 | "repairSpeed": 0.25, 31 | "targetBuildings": true, 32 | "bullet": { 33 | "maxRange": 80 34 | } 35 | } 36 | ], 37 | "research": { 38 | "parent": "regis", 39 | "requirements": [ 40 | {"item": "lead", "amount": 500}, 41 | {"item": "copper", "amount": 500}, 42 | {"item": "silicon", "amount": 500} 43 | ] 44 | }, 45 | "abilities": [ 46 | { 47 | "type": "ForceFieldAbility", 48 | "radius": 50, 49 | "regen": 0.5, 50 | "max": 300, 51 | "cooldown": 600 52 | } 53 | ] 54 | } 55 | -------------------------------------------------------------------------------- /content/units/interceptor-type/dredge.json: -------------------------------------------------------------------------------- 1 | { 2 | "localizedName": "[#ff66]Dredge", 3 | "description": "Upgrade to the delver. Built to protect Baratrous cores. Code name engineer", 4 | "type": "flying", 5 | "lowAltitude": true, 6 | "mineSpeed": 5, 7 | "mineTier": 6, 8 | "canAttack": false, 9 | "buildSpeed": 1, 10 | "hitSize": 8, 11 | "engineOffset": 5, 12 | "engineSize": 2, 13 | "armor": 0, 14 | "itemCapacity": 100, 15 | "speed": 2.5, 16 | "accel": 0.06, 17 | "drag": 0.017, 18 | "drawBuildBeam": true, 19 | "health": 250, 20 | "mineHardnessScaling": true, 21 | "flying": true, 22 | "research": { 23 | "parent": "baratrous", 24 | "requirements": [ 25 | {"item": "lead", "amount": 500}, 26 | {"item": "copper", "amount": 500}, 27 | {"item": "silicon", "amount": 500} 28 | ] 29 | }, 30 | "abilities": [ 31 | { 32 | "type": "EnergyFieldAbility", 33 | "effectRadius": 3, 34 | "range": 120, 35 | "damage": 5, 36 | "reload": 30, 37 | "maxTargets": 10 38 | } 39 | ] 40 | } 41 | -------------------------------------------------------------------------------- /content/units/interceptor-type/fossores.json: -------------------------------------------------------------------------------- 1 | { 2 | "localizedName": "[#ff66]Fossores", 3 | "description": "A strong mining drone equipped with repair laser and powerfull drill.", 4 | "type": "flying", 5 | "lowAltitude": true, 6 | "mineSpeed": 2.5, 7 | "mineTier": 6, 8 | "canAttack": false, 9 | "buildSpeed": 0.25, 10 | "hitSize": 8, 11 | "engineOffset": 5, 12 | "engineSize": 2, 13 | "armor": 1, 14 | "itemCapacity": 10, 15 | "speed": 2.5, 16 | "accel": 0.06, 17 | "drag": 0.017, 18 | "drawBuildBeam": true, 19 | "health": 300, 20 | "mineHardnessScaling": true, 21 | "flying": true, 22 | "defaultController": "MinerAI", 23 | "weapons": [ 24 | { 25 | "type": "RepairBeamWeapon", 26 | "name": "repair-point", 27 | "rotate": true, 28 | "mirror": false, 29 | "x": 0, 30 | "y": 1, 31 | "beamWidth": 0.6, 32 | "repairSpeed": 0.25, 33 | "bullet": { 34 | "maxRange": 75 35 | } 36 | } 37 | ], 38 | "research": { 39 | "parent": "tier-1-factory", 40 | "requirements": [ 41 | {"item": "lead", "amount": 500}, 42 | {"item": "copper", "amount": 500}, 43 | {"item": "silicon", "amount": 500} 44 | ] 45 | } 46 | } 47 | -------------------------------------------------------------------------------- /content/units/interceptor-type/mothership.json: -------------------------------------------------------------------------------- 1 | { 2 | "localizedName": "[#ff]Mothership", 3 | "description": "A strong attack and support unit capable of carrying large payloads and slowly produce units", 4 | "type": "payload", 5 | "lowAltitude": true, 6 | "mineSpeed": 1, 7 | "mineTier": 6, 8 | "canAttack": true, 9 | "buildSpeed": 3, 10 | "hitSize": 70, 11 | "engines": [ 12 | { 13 | "x": 46, 14 | "y": -17, 15 | "radius": 8, 16 | "rotation": 40 17 | }, 18 | { 19 | "x": 36, 20 | "y": -47, 21 | "radius": 8, 22 | "rotation": 40 23 | }, 24 | { 25 | "x": -44, 26 | "y": -17, 27 | "radius": 8, 28 | "rotation": 240 29 | }, 30 | { 31 | "x": -34, 32 | "y": -47, 33 | "radius": 8, 34 | "rotation": 240 35 | } 36 | ], 37 | "payloadCapacity": 1940, 38 | "armor": 20, 39 | "itemCapacity": 1000, 40 | "speed": 0.7, 41 | "accel": 0.04, 42 | "drag": 0.04, 43 | "drawBuildBeam": true, 44 | "health": 20000, 45 | "mineHardnessScaling": true, 46 | "defaultController": "FlyingAI", 47 | "flying": true, 48 | "weapons": [ 49 | { 50 | "name": "big-cannon", 51 | "rotate": false, 52 | "mirror": false, 53 | "top": "true", 54 | "shake": 1, 55 | "x": 0, 56 | "y": 0, 57 | "reload": 60, 58 | "recoil": 5, 59 | "shootSound": "artillery", 60 | "ejectEffect": "casing4", 61 | "inaccuracy": 0, 62 | "shoot": { 63 | "shots": 1 64 | }, 65 | "bullet": { 66 | "type": "BasicBulletType", 67 | "collidesTiles": true, 68 | "collides" : true, 69 | "laserAbsorb": true, 70 | "hittable": false, 71 | "absorbable": true, 72 | "pierce": true, 73 | "hitEffect": "titanExplosion", 74 | "pierceCap": 2, 75 | "pierceBuilding": true, 76 | "status": "burning", 77 | "makeFire": true, 78 | "damage": 1000, 79 | "hitShake": 0.5, 80 | "despawnShake": 0.5, 81 | "width": 14, 82 | "height": 35, 83 | "lifetime": 120, 84 | "speed": 5, 85 | "backColor": "ff6600", 86 | "frontColor": "ff6600", 87 | "fragBullets": 20, 88 | "fragSpread": 5, 89 | "fragRandomSpread": 0, 90 | "fragBullet": { 91 | "type": "LiquidBulletType", 92 | 93 | "laserAbsorb": true, 94 | "hittable": true, 95 | "absorbable": false, 96 | "status": "burning", 97 | "makeFire": true, 98 | "liquid": "slag", 99 | "despawnHit": true, 100 | "puddleSize": 300, 101 | "width": 8, 102 | "height": 20, 103 | "lifetime": 60, 104 | "speed": 2 105 | } 106 | } 107 | }, 108 | { 109 | "type": "RepairBeamWeapon", 110 | "name": "repair-point", 111 | "mirror": "true", 112 | "x": -18, 113 | "y": 8, 114 | "beamWidth": 0.8, 115 | "repairSpeed": 0.5, 116 | "bullet": { 117 | "maxRange": 150 118 | } 119 | }, 120 | { 121 | "type": "RepairBeamWeapon", 122 | "name": "repair-point", 123 | "mirror": "true", 124 | "x": -18, 125 | "y": -8, 126 | "beamWidth": 0.8, 127 | "repairSpeed": 0.5, 128 | "bullet": { 129 | "maxRange": 150 130 | } 131 | } 132 | ], 133 | "research": { 134 | "parent": "navis", 135 | "requirements": [ 136 | {"item": "lead", "amount": 10000}, 137 | {"item": "copper", "amount": 10000}, 138 | {"item": "silicon", "amount": 15000}, 139 | {"item": "titanium", "amount": 10000}, 140 | {"item": "thorium", "amount": 5000} 141 | ] 142 | }, 143 | "abilities": [ 144 | { 145 | "type": "ForceFieldAbility", 146 | "radius": 100, 147 | "regen": 4.0, 148 | "max": 5000, 149 | "cooldown": 1800 150 | }, 151 | { 152 | "type": "UnitSpawnAbility", 153 | "unit": "fossores", 154 | "spawnX": 4, 155 | "spawnY": 0, 156 | "spawnTime": 1800 157 | }, 158 | { 159 | "type": "UnitSpawnAbility", 160 | "unit": "fossores", 161 | "spawnX": -4, 162 | "spawnY": 0, 163 | "spawnTime": 1800 164 | }, 165 | { 166 | "type": "SpawnDeathAbility", 167 | "amount": 5, 168 | "faceOutwards": true, 169 | "unit": "sterna" 170 | } 171 | ] 172 | } 173 | -------------------------------------------------------------------------------- /content/units/interceptor-type/navis.json: -------------------------------------------------------------------------------- 1 | { 2 | "localizedName": "[#ff66]Navis", 3 | "description": "A cargo ship and artillery", 4 | "type": "flying", 5 | "lowAltitude": true, 6 | "canMine": false, 7 | "canAttack": true, 8 | "buildSpeed": 0.5, 9 | "hitSize": 36, 10 | "engineOffset": 18, 11 | "engineSize": 4, 12 | "armor": 10, 13 | "itemCapacity": 1000, 14 | "speed": 1.0, 15 | "accel": 0.04, 16 | "drag": 0.017, 17 | "drawBuildBeam": true, 18 | "health": 5000, 19 | "flying": true, 20 | "defaultController": "FlyingAI", 21 | "weapons": [ 22 | { 23 | "rotate": false, 24 | "mirror": false, 25 | "top": "true", 26 | "shake": 1, 27 | "x": 0, 28 | "y": 0, 29 | "reload": 600, 30 | "recoil": 2.5, 31 | "shootSound": "artillery", 32 | "ejectEffect": "casing4", 33 | 34 | "bullet": { 35 | "type": "BasicBulletType", 36 | "collidesTiles": true, 37 | "collides" : true, 38 | 39 | "laserAbsorb": true, 40 | "hittable": false, 41 | "absorbable": false, 42 | "homingPower": 0.025, 43 | 44 | "pierce": true, 45 | "hitEffect": "titanExplosion", 46 | "pierceCap": 2, 47 | "pierceBuilding": true, 48 | "status": "burning", 49 | "statusDuration": 600, 50 | "makeFire": true, 51 | "damage": 300, 52 | "splashDamage": 600, 53 | "splashDamageRadius": 60, 54 | "width": 12, 55 | "height": 30, 56 | "lifetime": 120, 57 | "speed": 4, 58 | "backColor": "ff6600", 59 | "frontColor": "ffffff", 60 | "fragBullets": 5, 61 | "fragSpread": 10, 62 | "fragRandomSpread": 0, 63 | "fragBullet": { 64 | "type": "BasicBulletType", 65 | 66 | "laserAbsorb": true, 67 | "hittable": true, 68 | "absorbable": false, 69 | "status": "burning", 70 | "statusDuration": 600, 71 | "makeFire": true, 72 | 73 | "homingPower": 0.1, 74 | "width": 6, 75 | "height": 15, 76 | "lifetime": 60, 77 | "speed": 2, 78 | "damage": 10, 79 | "splashDamage": 20, 80 | "splashDamageRadius": 20 81 | } 82 | 83 | } 84 | } 85 | ], 86 | "research": { 87 | "parent": "arei", 88 | "requirements": [ 89 | {"item": "lead", "amount": 1000}, 90 | {"item": "copper", "amount": 1000}, 91 | {"item": "silicon", "amount": 1000}, 92 | {"item": "titanium", "amount": 1500} 93 | ] 94 | }, 95 | "abilities": [ 96 | { 97 | "type": "ForceFieldAbility", 98 | "radius": 50, 99 | "regen": 1, 100 | "max": 2500, 101 | "cooldown": 600 102 | }, 103 | { 104 | "type": "SpawnDeathAbility", 105 | "amount": 5, 106 | "faceOutwards": true, 107 | "unit": "fossores" 108 | } 109 | ] 110 | } 111 | -------------------------------------------------------------------------------- /content/units/interceptor-type/sterna.json: -------------------------------------------------------------------------------- 1 | { 2 | "localizedName": "[#ff66]Sterna", 3 | "description": "A support drone equipped with repair lasers.", 4 | "type": "flying", 5 | "lowAltitude": true, 6 | "mineSpeed": 3, 7 | "mineTier": 4, 8 | "canAttack": false, 9 | "buildSpeed": 2, 10 | "hitSize": 16, 11 | "engineOffset": 9, 12 | "engineSize": 3, 13 | "armor": 5, 14 | "itemCapacity": 50, 15 | "speed": 2.5, 16 | "accel": 0.06, 17 | "drag": 0.017, 18 | "drawBuildBeam": true, 19 | "health": 500, 20 | "mineHardnessScaling": true, 21 | "flying": true, 22 | "defaultController": "BuilderAI", 23 | "weapons": [ 24 | { 25 | "name": "small-blaster", 26 | "ejectEffect": "casing2", 27 | "x": -3.5, 28 | "y": 2, 29 | "mirror": true, 30 | "reload": 30, 31 | "rotate": true, 32 | "shootSound": "lasershoot", 33 | "inaccuracy": 8, 34 | "shoot": { 35 | "shots": 8 36 | }, 37 | "bullet": { 38 | "type": "LaserBoltBulletType", 39 | 40 | "laserAbsorb": true, 41 | "hittable": false, 42 | "absorbable": false, 43 | 44 | "length": 2, 45 | "width": 1, 46 | "damage": 10, 47 | "speed": 6, 48 | "lifetime": 25, 49 | "collidesTeam": true, 50 | "healPercent": 1, 51 | "backColor": "98ffa9", 52 | "frontColor": "ffffff" 53 | } 54 | }, 55 | { 56 | "type": "RepairBeamWeapon", 57 | "name": "small-repair-point", 58 | "x": -3, 59 | "y": -3.5, 60 | "beamWidth": 0.5, 61 | "mirror": false, 62 | "repairSpeed": 0.25, 63 | "bullet": { 64 | "maxRange": 75 65 | } 66 | }, 67 | { 68 | "type": "RepairBeamWeapon", 69 | "name": "small-repair-point", 70 | "x": 3, 71 | "y": -3.5, 72 | "beamWidth": 0.5, 73 | "mirror": false, 74 | "repairSpeed": 0.25, 75 | "bullet": { 76 | "maxRange": 75 77 | } 78 | } 79 | ], 80 | "research": { 81 | "parent": "fossores", 82 | "requirements": [ 83 | {"item": "lead", "amount": 1000}, 84 | {"item": "copper", "amount": 1000}, 85 | {"item": "silicon", "amount": 500}, 86 | {"item": "titanium", "amount": 500} 87 | ] 88 | }, 89 | "abilities": [ 90 | { 91 | "type": "SpawnDeathAbility", 92 | "amount": 1, 93 | "faceOutwards": true, 94 | "unit": "fossores" 95 | }, 96 | { 97 | "type": "ForceFieldAbility", 98 | "radius": 25, 99 | "regen": 0.1, 100 | "max": 250, 101 | "cooldown": 600 102 | } 103 | ] 104 | } 105 | -------------------------------------------------------------------------------- /content/units/naval-type/auxilium.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "naval", 3 | "name": "[green]Auxilium", 4 | "description": "Equipped with a small missile launcher and regen field", 5 | "health": 350, 6 | "armor": 3, 7 | "speed": 1.2, 8 | "drag": 0.14, 9 | "hitSize": 9, 10 | "accel": 0.5, 11 | "rotateSpeed": 5.5, 12 | "trailLength": 16, 13 | "waveTrailX": 4, 14 | "trailScl": 1.2, 15 | "faceTarget": false, 16 | "buildSpeed": 0.25, 17 | "range": 120, 18 | "weapons": [ 19 | { 20 | "name": "small-rl", 21 | "reload": 60, 22 | "x": 0, 23 | "rotate": true, 24 | "mirror": false, 25 | "shake": 1, 26 | "shoot": { 27 | "shots": 4, 28 | "shotDelay": 2 29 | }, 30 | "velocityRnd": 0.2, 31 | "shootSound": "missile", 32 | "inaccuracy": 10, 33 | "bullet": { 34 | "type": "MissileBulletType", 35 | "speed": 3, 36 | "damage": 10, 37 | "splashDamage": 10, 38 | "splashDamageRadius": 20, 39 | "status": "electrified", 40 | "statusDuration": 600, 41 | "width": 9, 42 | "height": 9, 43 | "shrinkY": 0, 44 | "drag": -0.003, 45 | "homingRange": 60, 46 | "keepVelocity": false, 47 | "collidesTeam": true, 48 | "healPercent": 1, 49 | "lifetime": 60, 50 | "trailColor": "00ff00", 51 | "backColor": "98ffa9", 52 | "frontColor": "66ff66", 53 | "hitEffect": "blastExplosion", 54 | "despawnEffect": "blastExplosion", 55 | "weaveScale": 6, 56 | "weaveMag": 1 57 | } 58 | } 59 | ], 60 | "research": { 61 | "parent": "tier-1-factory", 62 | "requirements": [ 63 | {"item": "lead", "amount": 500}, 64 | {"item": "copper", "amount": 500}, 65 | {"item": "silicon", "amount": 500} 66 | ] 67 | }, 68 | "abilities": [ 69 | { 70 | "type": "RepairFieldAbility", 71 | "range": 100, 72 | "reload": 600, 73 | "amount": 10 74 | } 75 | ] 76 | } -------------------------------------------------------------------------------- /content/units/naval-type/eruca.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "naval", 3 | "name": "[green]Eruca", 4 | "description": "Equipped with cluster missile launchers", 5 | "health": 10000, 6 | "armor": 10, 7 | "speed": 0.75, 8 | "drag": 0.16, 9 | "hitSize": 40, 10 | "accel": 0.5, 11 | "rotateSpeed": 5.5, 12 | "trailLength": 20, 13 | "waveTrailX": 5, 14 | "trailScl": 1.5, 15 | "faceTarget": false, 16 | "buildSpeed": 1.0, 17 | "range": 120, 18 | "weapons": [ 19 | { 20 | "name": "large-rl", 21 | "reload": 60, 22 | "x": 0, 23 | "y": 0, 24 | "rotate": true, 25 | "mirror": false, 26 | "velocityRnd": 0.2, 27 | "shootSound": "missile", 28 | "inaccuracy": 0, 29 | "bullet": { 30 | "type": "BulletType", 31 | "shootEffect": "sparkShoot", 32 | "smokeEffect": "shootSmokeTitan", 33 | "shake": 1, 34 | "speed": 0, 35 | "keepVelocity": false, 36 | "spawnUnit": "missile-u1" 37 | } 38 | }, 39 | { 40 | "name": "small-rl", 41 | "reload": 80, 42 | "x": -6, 43 | "y": -9, 44 | "rotate": true, 45 | "mirror": true, 46 | "shoot": { 47 | "shots": 6, 48 | "shotDelay": 2 49 | }, 50 | "velocityRnd": 0.2, 51 | "shootSound": "missile", 52 | "inaccuracy": 20, 53 | "bullet": { 54 | "type": "FlakBulletType", 55 | "sprite": "missile-large", 56 | "speed": 8, 57 | "lifetime": 30, 58 | "damage": 10, 59 | "width": 6, 60 | "height": 11, 61 | "hitSize": 7, 62 | "shootEffect": "shootSmokeSquareBig", 63 | "smokeEffect": "shootSmokeDisperse", 64 | "ammoMultiplier": 1, 65 | "hitColor":"66ff66", 66 | "backColor":"98ffa9", 67 | "trailColor": "00ff00", 68 | "lightningColor": "00ff00", 69 | "frontColor":"66ff66", 70 | "trailWidth": 3, 71 | "trailLength": 12, 72 | "hitEffect": "hitBulletColor", 73 | "despawnEffect": "hitBulletColor", 74 | 75 | "homingPower": 0.17, 76 | "homingDelay": 5, 77 | "homingRange": 160, 78 | 79 | "explodeRange": 10, 80 | "explodeDelay": 2, 81 | 82 | "flakInterval": 10, 83 | "despawnShake": 3, 84 | 85 | "fragBullet": { 86 | "type": "LaserBulletType", 87 | "colors": ["70d581", "98ffa9", "ffffff"], 88 | "width": 10, 89 | "hitEffect": "hitLancer", 90 | "damage": 20, 91 | "sideAngle": 175, 92 | "sideWidth": 1, 93 | "sideLength": 40, 94 | "lifetime": 22, 95 | "drawSize": 40, 96 | "length": 30, 97 | "pierceCap": 2 98 | }, 99 | "fragbullets": 8, 100 | "fragSpread": 45, 101 | "fragRandomSpread": 0, 102 | 103 | "splashDamage": 50, 104 | 105 | "splashDamageRadius": 40, 106 | "hitEffect": "hitSquaresColor", 107 | "collidesGround": true 108 | } 109 | } 110 | ], 111 | "research": { 112 | "parent": "gladius", 113 | "requirements": [ 114 | {"item": "lead", "amount": 2000}, 115 | {"item": "copper", "amount": 2000}, 116 | {"item": "silicon", "amount": 2000}, 117 | {"item": "titanium", "amount": 2000} 118 | ] 119 | }, 120 | "abilities": [ 121 | { 122 | "type": "SpawnDeathAbility", 123 | "amount": 1, 124 | "faceOutwards": true, 125 | "unit": "gladius" 126 | }, 127 | { 128 | "type": "RepairFieldAbility", 129 | "range": 100, 130 | "reload": 600, 131 | "amount": 100 132 | } 133 | ] 134 | } 135 | -------------------------------------------------------------------------------- /content/units/naval-type/gladius.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "naval", 3 | "name": "[green]Gladius", 4 | "description": "Equipped with cluster missile launchers", 5 | "health": 800, 6 | "armor": 8, 7 | "speed": 1.0, 8 | "drag": 0.14, 9 | "hitSize": 24, 10 | "accel": 0.5, 11 | "rotateSpeed": 5.5, 12 | "trailLength": 20, 13 | "waveTrailX": 5, 14 | "trailScl": 1.5, 15 | "faceTarget": false, 16 | "buildSpeed": 1.0, 17 | "range": 120, 18 | "weapons": [ 19 | { 20 | "name": "large-rl", 21 | "reload": 60, 22 | "x": 0, 23 | "y": 0, 24 | "rotate": true, 25 | "mirror": false, 26 | "fragOnHit": true, 27 | "shake": 5, 28 | "shoot": { 29 | "shots": 1, 30 | "shotDelay": 1 31 | }, 32 | "velocityRnd": 0.2, 33 | "shootSound": "missile", 34 | "inaccuracy": 2, 35 | "bullet": { 36 | "type": "MissileBulletType", 37 | "speed": 6, 38 | "damage": 100, 39 | "splashDamage": 100, 40 | "splashDamageRadius": 56, 41 | "status": "electrified", 42 | "statusDuration": 600, 43 | "width": 12, 44 | "height": 12, 45 | "shrinkY": 0, 46 | "drag": -0.003, 47 | "homingRange": 60, 48 | "keepVelocity": false, 49 | "collidesTeam": true, 50 | "healPercent": 5, 51 | "lifetime": 40, 52 | "trailColor": "00ff00", 53 | "backColor": "98ffa9", 54 | "frontColor": "66ff66", 55 | "hitEffect": "blastExplosion", 56 | "despawnEffect": "blastExplosion", 57 | "weaveScale": 6, 58 | "weaveMag": 1 59 | } 60 | }, 61 | { 62 | "name": "small-rl", 63 | "reload": 60, 64 | "x": -6, 65 | "y": -9, 66 | "rotate": true, 67 | "mirror": true, 68 | "shake": 1, 69 | "shoot": { 70 | "shots": 5, 71 | "shotDelay": 3 72 | }, 73 | "velocityRnd": 0.2, 74 | "shootSound": "missile", 75 | "inaccuracy": 10, 76 | "bullet": { 77 | "type": "MissileBulletType", 78 | "speed": 3, 79 | "damage": 10, 80 | "splashDamage": 10, 81 | "splashDamageRadius": 20, 82 | "status": "electrified", 83 | "statusDuration": 600, 84 | "width": 9, 85 | "height": 9, 86 | "shrinkY": 0, 87 | "drag": -0.003, 88 | "homingPower": 0.5, 89 | "keepVelocity": false, 90 | "collidesTeam": true, 91 | "healPercent": 1, 92 | "lifetime": 60, 93 | "trailColor": "00ff00", 94 | "backColor": "98ffa9", 95 | "frontColor": "66ff66", 96 | "hitEffect": "blastExplosion", 97 | "despawnEffect": "blastExplosion", 98 | "weaveScale": 6, 99 | "weaveMag": 1 100 | } 101 | } 102 | ], 103 | "research": { 104 | "parent": "pellentesque", 105 | "requirements": [ 106 | {"item": "lead", "amount": 2000}, 107 | {"item": "copper", "amount": 2000}, 108 | {"item": "silicon", "amount": 2000}, 109 | {"item": "titanium", "amount": 2000} 110 | ] 111 | }, 112 | "abilities": [ 113 | { 114 | "type": "SpawnDeathAbility", 115 | "amount": 1, 116 | "faceOutwards": true, 117 | "unit": "pellentesque" 118 | }, 119 | { 120 | "type": "RepairFieldAbility", 121 | "range": 100, 122 | "reload": 300, 123 | "amount": 50 124 | } 125 | ] 126 | } -------------------------------------------------------------------------------- /content/units/naval-type/pellentesque.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "naval", 3 | "name": "[green]Pellentesque", 4 | "description": "Equipped with a precision missile launcher and regen field", 5 | "health": 500, 6 | "armor": 5, 7 | "speed": 1.0, 8 | "drag": 0.14, 9 | "hitSize": 12, 10 | "accel": 0.5, 11 | "rotateSpeed": 5.5, 12 | "trailLength": 20, 13 | "waveTrailX": 5, 14 | "trailScl": 1.5, 15 | "faceTarget": false, 16 | "buildSpeed": 1.0, 17 | "range": 120, 18 | "weapons": [ 19 | { 20 | "name": "small-rl", 21 | "reload": 60, 22 | "x": 0, 23 | "rotate": true, 24 | "mirror": false, 25 | "fragOnHit": true, 26 | "shake": 2, 27 | "shoot": { 28 | "shots": 1, 29 | "shotDelay": 1 30 | }, 31 | "velocityRnd": 0.2, 32 | "shootSound": "missile", 33 | "inaccuracy": 2, 34 | "bullet": { 35 | "type": "MissileBulletType", 36 | "speed": 6, 37 | "damage": 50, 38 | "splashDamage": 50, 39 | "splashDamageRadius": 48, 40 | "status": "electrified", 41 | "statusDuration": 600, 42 | "width": 12, 43 | "height": 12, 44 | "shrinkY": 0, 45 | "drag": -0.003, 46 | "homingRange": 60, 47 | "keepVelocity": false, 48 | "collidesTeam": true, 49 | "healPercent": 5, 50 | "lifetime": 30, 51 | "trailColor": "00ff00", 52 | "backColor": "98ffa9", 53 | "frontColor": "66ff66", 54 | "hitEffect": "blastExplosion", 55 | "despawnEffect": "blastExplosion", 56 | "weaveScale": 6, 57 | "weaveMag": 1, 58 | "fragBullets": 1, 59 | "fragSpread": 0, 60 | "fragRandomSpread": 0, 61 | "fragBullet": { 62 | "type": "BasicBulletType", 63 | "speed": 8, 64 | "width": 9, 65 | "height": 12, 66 | "keepVelocity": false, 67 | "collidesAir": false, 68 | "collidesGround": false, 69 | "lifetime": 3, 70 | "fragBullets": 6, 71 | "fragSpread": 10, 72 | "fragRandomSpread": 0, 73 | "fragBullet": { 74 | "type": "MissileBulletType", 75 | "speed": 6, 76 | "damage": 10, 77 | "status": "electrified", 78 | "statusDuration": 600, 79 | "width": 12, 80 | "height": 12, 81 | "shrinkY": 0, 82 | "drag": -0.003, 83 | "homingRange": 60, 84 | "homingPower": 0.25, 85 | "keepVelocity": false, 86 | "collidesTeam": true, 87 | "healPercent": 5, 88 | "lifetime": 30, 89 | "trailColor": "00ff00", 90 | "backColor": "98ffa9", 91 | "frontColor": "66ff66", 92 | "hitEffect": "blastExplosion", 93 | "despawnEffect": "blastExplosion", 94 | "weaveScale": 6, 95 | "weaveMag": 1 96 | } 97 | } 98 | } 99 | } 100 | ], 101 | "research": { 102 | "parent": "auxilium", 103 | "requirements": [ 104 | {"item": "lead", "amount": 1000}, 105 | {"item": "copper", "amount": 1000}, 106 | {"item": "silicon", "amount": 500}, 107 | {"item": "titanium", "amount": 500} 108 | ] 109 | }, 110 | "abilities": [ 111 | { 112 | "type": "SpawnDeathAbility", 113 | "amount": 1, 114 | "faceOutwards": true, 115 | "unit": "auxilium" 116 | }, 117 | { 118 | "type": "RepairFieldAbility", 119 | "range": 100, 120 | "reload": 600, 121 | "amount": 50 122 | } 123 | ] 124 | } 125 | -------------------------------------------------------------------------------- /content/units/naval-type/proelium.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "naval", 3 | "name": "[green]Proelium", 4 | "description": "Equipped with a large controlled missile", 5 | "health": 20000, 6 | "armor": 25, 7 | "speed": 0.6, 8 | "drag": 0.16, 9 | "hitSize": 60, 10 | "accel": 0.5, 11 | "rotateSpeed": 5, 12 | "trailLength": 20, 13 | "waveTrailX": 5, 14 | "trailScl": 1.5, 15 | "faceTarget": false, 16 | "buildSpeed": 1.0, 17 | "weapons": [ 18 | { 19 | "shootOnDeath": true, 20 | "name": "large-rl", 21 | "reload": 300, 22 | "x": 0, 23 | "y": 0, 24 | "rotate": true, 25 | "mirror": false, 26 | "velocityRnd": 0.2, 27 | "shootSound": "missile", 28 | "inaccuracy": 0, 29 | "bullet": { 30 | "type": "BulletType", 31 | "shootEffect": "sparkShoot", 32 | "smokeEffect": "shootSmokeTitan", 33 | "shake": 1, 34 | "speed": 0, 35 | "keepVelocity": false, 36 | "spawnUnit": "missile-u2" 37 | } 38 | }, 39 | { 40 | "type": "PointDefenseWeapon", 41 | "name": "repair-point" 42 | "x": 12, 43 | "y": -12, 44 | "mirror": true, 45 | "reload": 3, 46 | "targetInterval": 1, 47 | "targetSwitchInterval": 1, 48 | "bullet": { 49 | "type": "BulletType", 50 | "shootEffect": "sparkShoot", 51 | "hitEffect": "pointHit", 52 | "maxRange": 240, 53 | "damage": 25 54 | } 55 | }, 56 | { 57 | "type": "PointDefenseWeapon", 58 | "name": "repair-point" 59 | "x": 12, 60 | "y": 12, 61 | "mirror": true, 62 | "reload": 3, 63 | "targetInterval": 1, 64 | "targetSwitchInterval": 1, 65 | "bullet": { 66 | "type": "BulletType", 67 | "shootEffect": "sparkShoot", 68 | "hitEffect": "pointHit", 69 | "maxRange": 240, 70 | "damage": 25 71 | } 72 | }, 73 | { 74 | "name": "small-rl", 75 | "reload": 120, 76 | "x": 0, 77 | "y": 12, 78 | "rotate": true, 79 | "mirror": false, 80 | "shake": 1, 81 | "shoot": { 82 | "shots": 20, 83 | "shotDelay": 1 84 | }, 85 | "velocityRnd": 0.2, 86 | "shootSound": "missile", 87 | "inaccuracy": 15, 88 | "bullet": { 89 | "type": "MissileBulletType", 90 | "speed": 3, 91 | "damage": 25, 92 | "status": "electrified", 93 | "statusDuration": 600, 94 | "width": 9, 95 | "height": 9, 96 | "shrinkY": 0, 97 | "drag": -0.003, 98 | "homingRange": 60, 99 | "keepVelocity": false, 100 | "collidesTeam": true, 101 | "healPercent": 1, 102 | "lifetime": 60, 103 | "trailColor": "00ff00", 104 | "backColor": "98ffa9", 105 | "frontColor": "66ff66", 106 | "hitEffect": "blastExplosion", 107 | "despawnEffect": "blastExplosion", 108 | "weaveScale": 6, 109 | "weaveMag": 1 110 | } 111 | } 112 | ], 113 | "research": { 114 | "parent": "eruca", 115 | "requirements": [ 116 | {"item": "lead", "amount": 2000}, 117 | {"item": "copper", "amount": 2000}, 118 | {"item": "silicon", "amount": 2000}, 119 | {"item": "titanium", "amount": 2000} 120 | ] 121 | }, 122 | "abilities": [ 123 | { 124 | "type": "UnitSpawnAbility", 125 | "unit": "pellentesque", 126 | "spawnX": 0, 127 | "spawnY": 0, 128 | "spawnTime": 1800 129 | }, 130 | { 131 | "type": "UnitSpawnAbility", 132 | "unit": "healing-dorito", 133 | "spawnX": 0, 134 | "spawnY": 0, 135 | "spawnTime": 600 136 | }, 137 | { 138 | "type": "SpawnDeathAbility", 139 | "amount": 1, 140 | "faceOutwards": true, 141 | "unit": "eruca" 142 | } 143 | ] 144 | } 145 | -------------------------------------------------------------------------------- /content/units/naval-type/unit-missiles/missile-u1.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "flying", 3 | "defaultController": "MissileAI", 4 | "playerControllable": false, 5 | "createWreck": false, 6 | "createScorch": false, 7 | "logicControllable": true, 8 | "flying": true, 9 | "health": 100, 10 | "armor": 2, 11 | "speed": 3, 12 | "drag": 0.14, 13 | "hitSize": 10, 14 | "accel": 2, 15 | "hidden": true, 16 | "rotateSpeed": 2.5, 17 | "trailLength": 10, 18 | "waveTrailX": 5, 19 | "trailScl": 1.5, 20 | "faceTarget": false, 21 | "canAttack": true, 22 | "useUnitCap": false, 23 | "isEnemy": true, 24 | "buildSpeed": 1.0, 25 | "range": 30, 26 | "weapons": [ 27 | { 28 | "shootOnDeath": true, 29 | "reload": 24, 30 | "shootCone": 180, 31 | "ejectEffect": "none", 32 | "shootSound": "explosion", 33 | "x": 0, 34 | "shootY": 0, 35 | "bullet": { 36 | "type": "BulletType", 37 | "collides": false, 38 | "collidesTiles": false, 39 | "hitSound": "explosion", 40 | "overrideRange": 120, 41 | "speed": 0, 42 | "hitEffect": "none", 43 | "despawnEffect": "titanSmoke", 44 | "splashDamageRadius": 80, 45 | "instantDisappear": true, 46 | "scaledSplashDamage": true, 47 | "splashDamage": 500, 48 | "hittable": false, 49 | "killShooter": true, 50 | "collidesAir": true 51 | } 52 | }, 53 | { 54 | "reload": 24, 55 | "ejectEffect": "none", 56 | "shootSound": "none", 57 | "alwaysContinuous": true, 58 | "ignoreRotation": true, 59 | "alwaysShooting": true, 60 | "shoot": { 61 | "firstShotDelay": 80 62 | }, 63 | "x": 0, 64 | "shootY": 0, 65 | "bullet": { 66 | "type": "BulletType", 67 | "collides": false, 68 | "collidesTiles": false, 69 | "hitSound": "none", 70 | "speed": 0, 71 | "hitEffect": "none", 72 | "despawnEffect": "none", 73 | "instantDisappear": true, 74 | "hittable": false, 75 | "killShooter": true, 76 | "collidesAir": false, 77 | "collidesGround": false 78 | } 79 | } 80 | ] 81 | } 82 | -------------------------------------------------------------------------------- /content/units/naval-type/unit-missiles/missile-u2.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "flying", 3 | "defaultController": "MissileAI", 4 | "playerControllable": true, 5 | "createWreck": false, 6 | "createScorch": false, 7 | "logicControllable": true, 8 | "flying": true, 9 | "health": 1000, 10 | "armor": 5, 11 | "speed": 3, 12 | "drag": 0.15, 13 | "hitSize": 10, 14 | "accel": 1, 15 | "hidden": false, 16 | "rotateSpeed": 2.5, 17 | "trailLength": 10, 18 | "waveTrailX": 5, 19 | "trailScl": 1.5, 20 | "faceTarget": false, 21 | "canAttack": true, 22 | "useUnitCap": false, 23 | "isEnemy": true, 24 | "buildSpeed": 1.0, 25 | "range": 60, 26 | "weapons": [ 27 | { 28 | "shootOnDeath": true, 29 | "reload": 24, 30 | "shootCone": 180, 31 | "ejectEffect": "none", 32 | "shootSound": "explosion", 33 | "x": 0, 34 | "shootY": 0, 35 | "bullet": { 36 | "type": "BulletType", 37 | "collides": false, 38 | "collidesTiles": false, 39 | "hitSound": "explosion", 40 | "overrideRange": 120, 41 | "speed": 0, 42 | "hitEffect": "none", 43 | "despawnEffect": "titanSmoke", 44 | "splashDamageRadius": 80, 45 | "instantDisappear": true, 46 | "scaledSplashDamage": true, 47 | "splashDamage": 500, 48 | "hittable": false, 49 | "killShooter": true, 50 | "collidesAir": true 51 | "fragBullets": 30, 52 | "fragSpread": 15, 53 | "fragRandomSpread": 0, 54 | "fragBullet": { 55 | "type": "LightningBulletType", 56 | "damage": 25, 57 | "collidesTeam": true, 58 | "healPercent": 5, 59 | "lightningLength": 25, 60 | "lightningColor": "66ff66" 61 | } 62 | } 63 | }, 64 | { 65 | "reload": 24, 66 | "ejectEffect": "none", 67 | "shootSound": "none", 68 | "alwaysContinuous": true, 69 | "ignoreRotation": true, 70 | "alwaysShooting": true, 71 | "shoot": { 72 | "firstShotDelay": 140 73 | }, 74 | "x": 0, 75 | "shootY": 0, 76 | "bullet": { 77 | "type": "BulletType", 78 | "collides": false, 79 | "collidesTiles": false, 80 | "hitSound": "none", 81 | "speed": 0, 82 | "hitEffect": "none", 83 | "despawnEffect": "none", 84 | "instantDisappear": true, 85 | "hittable": false, 86 | "killShooter": true, 87 | "collidesAir": false, 88 | "collidesGround": false 89 | } 90 | } 91 | ] 92 | } 93 | -------------------------------------------------------------------------------- /content/units/naval-type/unit-missiles/wip-missile.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "flying", 3 | "defaultController": "MissileAI", 4 | "playerControllable": true, 5 | "createWreck": false, 6 | "createScorch": false, 7 | "logicControllable": true, 8 | "flying": true, 9 | "health": 250, 10 | "armor": 10, 11 | "speed": 3, 12 | "drag": 0.15, 13 | "hitSize": 10, 14 | "accel": 1, 15 | "hidden": false, 16 | "rotateSpeed": 6.0, 17 | "trailLength": 10, 18 | "waveTrailX": 5, 19 | "trailScl": 1.5, 20 | "faceTarget": true, 21 | "canAttack": true, 22 | "useUnitCap": false, 23 | "isEnemy": true, 24 | "buildSpeed": 1.0, 25 | "range": 60, 26 | "weapons": [ 27 | { 28 | "shootOnDeath": true, 29 | "reload": 24, 30 | "shootCone": 180, 31 | "ejectEffect": "none", 32 | "shootSound": "explosion", 33 | "x": 0, 34 | "shootY": 0, 35 | "bullet": { 36 | "type": "BulletType", 37 | "collides": true, 38 | "collidesTiles": true, 39 | "hitSound": "explosion", 40 | "overrideRange": 120, 41 | "speed": 0, 42 | "hitEffect": "none", 43 | "despawnEffect": "none", 44 | "instantDisappear": true, 45 | "scaledSplashDamage": true, 46 | "damage": 100, 47 | "hittable": false, 48 | "killShooter": true, 49 | "collidesAir": true 50 | "fragBullets": 60, 51 | "fragSpread": 5, 52 | "fragRandomSpread": 0, 53 | "fragBullet": { 54 | "type": "LightningBulletType", 55 | "damage": 10, 56 | "collidesTeam": true, 57 | "healPercent": 15, 58 | "lightningLength": 20, 59 | "lightningColor": "66ff66" 60 | } 61 | } 62 | }, 63 | { 64 | "reload": 24, 65 | "ejectEffect": "none", 66 | "shootSound": "none", 67 | "alwaysContinuous": true, 68 | "ignoreRotation": true, 69 | "alwaysShooting": false, 70 | "x": 0, 71 | "shootY": 0, 72 | "bullet": { 73 | "type": "BulletType", 74 | "collides": false, 75 | "collidesTiles": false, 76 | "hitSound": "none", 77 | "speed": 0, 78 | "hitEffect": "none", 79 | "despawnEffect": "none", 80 | "instantDisappear": true, 81 | "hittable": false, 82 | "killShooter": true, 83 | "collidesAir": false, 84 | "collidesGround": false 85 | } 86 | } 87 | ], 88 | } 89 | -------------------------------------------------------------------------------- /icon-old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/icon-old.png -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/icon.png -------------------------------------------------------------------------------- /mod.hjson: -------------------------------------------------------------------------------- 1 | { 2 | displayName : Pyra Erekir 3 | repo : valigaming15/pyra-erekir 4 | name : pyra 5 | minGameVersion : 140 6 | dependencies: ["multi-crafter"] 7 | version : 1.3.5 8 | author: 9 | ''' 10 | 11 | Author: "[#ff6600[]]vali#5378[[]]" 12 | Coder: Fresh791 13 | Spriter and Coder: "[purple[]]Otamamori#4716[[]]" 14 | 15 | ''' 16 | description: 17 | ''' 18 | Pyratite focused mod which adds units turrets drills and factorys 19 | NOT the most balanced 20 | ''' 21 | } 22 | -------------------------------------------------------------------------------- /schematics/battery %.msch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/schematics/battery %.msch -------------------------------------------------------------------------------- /schematics/battery graph.msch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/schematics/battery graph.msch -------------------------------------------------------------------------------- /schematics/battery sorter.msch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/schematics/battery sorter.msch -------------------------------------------------------------------------------- /schematics/inf_link_turret.msch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/schematics/inf_link_turret.msch -------------------------------------------------------------------------------- /schematics/pyra heal.msch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/schematics/pyra heal.msch -------------------------------------------------------------------------------- /schematics/smelter.msch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/schematics/smelter.msch -------------------------------------------------------------------------------- /sounds/flux-artillery.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sounds/flux-artillery.mp3 -------------------------------------------------------------------------------- /sprites/blocks/core/baratrous-team.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/blocks/core/baratrous-team.png -------------------------------------------------------------------------------- /sprites/blocks/core/baratrous.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/blocks/core/baratrous.png -------------------------------------------------------------------------------- /sprites/blocks/core/regis-team.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/blocks/core/regis-team.png -------------------------------------------------------------------------------- /sprites/blocks/core/regis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/blocks/core/regis.png -------------------------------------------------------------------------------- /sprites/blocks/defence/pyra-door-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/blocks/defence/pyra-door-open.png -------------------------------------------------------------------------------- /sprites/blocks/defence/pyra-door.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/blocks/defence/pyra-door.png -------------------------------------------------------------------------------- /sprites/blocks/defence/pyra-wall-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/blocks/defence/pyra-wall-small.png -------------------------------------------------------------------------------- /sprites/blocks/defence/pyra-wall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/blocks/defence/pyra-wall.png -------------------------------------------------------------------------------- /sprites/blocks/distribution/conveyor/pyra-conveyor-0-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/blocks/distribution/conveyor/pyra-conveyor-0-0.png -------------------------------------------------------------------------------- /sprites/blocks/distribution/conveyor/pyra-conveyor-0-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/blocks/distribution/conveyor/pyra-conveyor-0-1.png -------------------------------------------------------------------------------- /sprites/blocks/distribution/conveyor/pyra-conveyor-0-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/blocks/distribution/conveyor/pyra-conveyor-0-2.png -------------------------------------------------------------------------------- /sprites/blocks/distribution/conveyor/pyra-conveyor-0-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/blocks/distribution/conveyor/pyra-conveyor-0-3.png -------------------------------------------------------------------------------- /sprites/blocks/distribution/conveyor/pyra-conveyor-1-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/blocks/distribution/conveyor/pyra-conveyor-1-0.png -------------------------------------------------------------------------------- /sprites/blocks/distribution/conveyor/pyra-conveyor-1-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/blocks/distribution/conveyor/pyra-conveyor-1-1.png -------------------------------------------------------------------------------- /sprites/blocks/distribution/conveyor/pyra-conveyor-1-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/blocks/distribution/conveyor/pyra-conveyor-1-2.png -------------------------------------------------------------------------------- /sprites/blocks/distribution/conveyor/pyra-conveyor-1-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/blocks/distribution/conveyor/pyra-conveyor-1-3.png -------------------------------------------------------------------------------- /sprites/blocks/distribution/conveyor/pyra-conveyor-2-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/blocks/distribution/conveyor/pyra-conveyor-2-0.png -------------------------------------------------------------------------------- /sprites/blocks/distribution/conveyor/pyra-conveyor-2-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/blocks/distribution/conveyor/pyra-conveyor-2-1.png -------------------------------------------------------------------------------- /sprites/blocks/distribution/conveyor/pyra-conveyor-2-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/blocks/distribution/conveyor/pyra-conveyor-2-2.png -------------------------------------------------------------------------------- /sprites/blocks/distribution/conveyor/pyra-conveyor-2-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/blocks/distribution/conveyor/pyra-conveyor-2-3.png -------------------------------------------------------------------------------- /sprites/blocks/distribution/conveyor/pyra-conveyor-3-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/blocks/distribution/conveyor/pyra-conveyor-3-0.png -------------------------------------------------------------------------------- /sprites/blocks/distribution/conveyor/pyra-conveyor-3-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/blocks/distribution/conveyor/pyra-conveyor-3-1.png -------------------------------------------------------------------------------- /sprites/blocks/distribution/conveyor/pyra-conveyor-3-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/blocks/distribution/conveyor/pyra-conveyor-3-2.png -------------------------------------------------------------------------------- /sprites/blocks/distribution/conveyor/pyra-conveyor-3-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/blocks/distribution/conveyor/pyra-conveyor-3-3.png -------------------------------------------------------------------------------- /sprites/blocks/distribution/conveyor/pyra-conveyor-4-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/blocks/distribution/conveyor/pyra-conveyor-4-0.png -------------------------------------------------------------------------------- /sprites/blocks/distribution/conveyor/pyra-conveyor-4-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/blocks/distribution/conveyor/pyra-conveyor-4-1.png -------------------------------------------------------------------------------- /sprites/blocks/distribution/conveyor/pyra-conveyor-4-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/blocks/distribution/conveyor/pyra-conveyor-4-2.png -------------------------------------------------------------------------------- /sprites/blocks/distribution/conveyor/pyra-conveyor-4-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/blocks/distribution/conveyor/pyra-conveyor-4-3.png -------------------------------------------------------------------------------- /sprites/blocks/distribution/highway/pyra-highway-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/blocks/distribution/highway/pyra-highway-0.png -------------------------------------------------------------------------------- /sprites/blocks/distribution/highway/pyra-highway-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/blocks/distribution/highway/pyra-highway-1.png -------------------------------------------------------------------------------- /sprites/blocks/distribution/highway/pyra-highway-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/blocks/distribution/highway/pyra-highway-2.png -------------------------------------------------------------------------------- /sprites/blocks/distribution/highway/pyra-highway-edge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/blocks/distribution/highway/pyra-highway-edge.png -------------------------------------------------------------------------------- /sprites/blocks/distribution/highway/pyra-highway-stack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/blocks/distribution/highway/pyra-highway-stack.png -------------------------------------------------------------------------------- /sprites/blocks/distribution/highway/pyra-highway.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/blocks/distribution/highway/pyra-highway.png -------------------------------------------------------------------------------- /sprites/blocks/drills/large-pyra-drill/large-pyra-drill-rim.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/blocks/drills/large-pyra-drill/large-pyra-drill-rim.png -------------------------------------------------------------------------------- /sprites/blocks/drills/large-pyra-drill/large-pyra-drill-rotator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/blocks/drills/large-pyra-drill/large-pyra-drill-rotator.png -------------------------------------------------------------------------------- /sprites/blocks/drills/large-pyra-drill/large-pyra-drill-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/blocks/drills/large-pyra-drill/large-pyra-drill-top.png -------------------------------------------------------------------------------- /sprites/blocks/drills/large-pyra-drill/large-pyra-drill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/blocks/drills/large-pyra-drill/large-pyra-drill.png -------------------------------------------------------------------------------- /sprites/blocks/drills/pyra-drill-rotator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/blocks/drills/pyra-drill-rotator.png -------------------------------------------------------------------------------- /sprites/blocks/drills/pyra-drill-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/blocks/drills/pyra-drill-top.png -------------------------------------------------------------------------------- /sprites/blocks/drills/pyra-drill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/blocks/drills/pyra-drill.png -------------------------------------------------------------------------------- /sprites/blocks/drills/small-pyra-drill-rotator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/blocks/drills/small-pyra-drill-rotator.png -------------------------------------------------------------------------------- /sprites/blocks/drills/small-pyra-drill-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/blocks/drills/small-pyra-drill-top.png -------------------------------------------------------------------------------- /sprites/blocks/drills/small-pyra-drill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/blocks/drills/small-pyra-drill.png -------------------------------------------------------------------------------- /sprites/blocks/effect/pyra-overdrive-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/blocks/effect/pyra-overdrive-top.png -------------------------------------------------------------------------------- /sprites/blocks/effect/pyra-overdrive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/blocks/effect/pyra-overdrive.png -------------------------------------------------------------------------------- /sprites/blocks/logic/pyra-processor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/blocks/logic/pyra-processor.png -------------------------------------------------------------------------------- /sprites/blocks/power/large-pyra-panel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/blocks/power/large-pyra-panel.png -------------------------------------------------------------------------------- /sprites/blocks/power/pyra-battery-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/blocks/power/pyra-battery-top.png -------------------------------------------------------------------------------- /sprites/blocks/power/pyra-battery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/blocks/power/pyra-battery.png -------------------------------------------------------------------------------- /sprites/blocks/power/pyra-panel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/blocks/power/pyra-panel.png -------------------------------------------------------------------------------- /sprites/blocks/power/pyra-tower.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/blocks/power/pyra-tower.png -------------------------------------------------------------------------------- /sprites/blocks/power/pyratite-reactor-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/blocks/power/pyratite-reactor-light.png -------------------------------------------------------------------------------- /sprites/blocks/power/pyratite-reactor-plasma-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/blocks/power/pyratite-reactor-plasma-0.png -------------------------------------------------------------------------------- /sprites/blocks/power/pyratite-reactor-plasma-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/blocks/power/pyratite-reactor-plasma-1.png -------------------------------------------------------------------------------- /sprites/blocks/power/pyratite-reactor-plasma-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/blocks/power/pyratite-reactor-plasma-2.png -------------------------------------------------------------------------------- /sprites/blocks/power/pyratite-reactor-plasma-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/blocks/power/pyratite-reactor-plasma-3.png -------------------------------------------------------------------------------- /sprites/blocks/power/pyratite-reactor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/blocks/power/pyratite-reactor.png -------------------------------------------------------------------------------- /sprites/blocks/power/pyratite-steam-turbine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/blocks/power/pyratite-steam-turbine.png -------------------------------------------------------------------------------- /sprites/blocks/power/pyratite-steam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/blocks/power/pyratite-steam.png -------------------------------------------------------------------------------- /sprites/blocks/power/pyratitel-reactor-bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/blocks/power/pyratitel-reactor-bottom.png -------------------------------------------------------------------------------- /sprites/blocks/production/ai-core-fabricator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/blocks/production/ai-core-fabricator.png -------------------------------------------------------------------------------- /sprites/blocks/production/crusher-piston.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/blocks/production/crusher-piston.png -------------------------------------------------------------------------------- /sprites/blocks/production/crusher-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/blocks/production/crusher-top.png -------------------------------------------------------------------------------- /sprites/blocks/production/crusher-ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/blocks/production/crusher-ui.png -------------------------------------------------------------------------------- /sprites/blocks/production/crusher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/blocks/production/crusher.png -------------------------------------------------------------------------------- /sprites/blocks/production/magmium-forge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/blocks/production/magmium-forge.png -------------------------------------------------------------------------------- /sprites/blocks/production/molten-alloy-forge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/blocks/production/molten-alloy-forge.png -------------------------------------------------------------------------------- /sprites/blocks/production/pyra-factory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/blocks/production/pyra-factory.png -------------------------------------------------------------------------------- /sprites/blocks/production/unit-clumper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/blocks/production/unit-clumper.png -------------------------------------------------------------------------------- /sprites/blocks/turrets/anticaeli/anticaeli-heat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/blocks/turrets/anticaeli/anticaeli-heat.png -------------------------------------------------------------------------------- /sprites/blocks/turrets/anticaeli/anticaeli-preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/blocks/turrets/anticaeli/anticaeli-preview.png -------------------------------------------------------------------------------- /sprites/blocks/turrets/anticaeli/anticaeli-shield-l.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/blocks/turrets/anticaeli/anticaeli-shield-l.png -------------------------------------------------------------------------------- /sprites/blocks/turrets/anticaeli/anticaeli-shield-r.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/blocks/turrets/anticaeli/anticaeli-shield-r.png -------------------------------------------------------------------------------- /sprites/blocks/turrets/anticaeli/anticaeli.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/blocks/turrets/anticaeli/anticaeli.png -------------------------------------------------------------------------------- /sprites/blocks/turrets/eideann/eideann-barrel-l.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/blocks/turrets/eideann/eideann-barrel-l.png -------------------------------------------------------------------------------- /sprites/blocks/turrets/eideann/eideann-barrel-r.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/blocks/turrets/eideann/eideann-barrel-r.png -------------------------------------------------------------------------------- /sprites/blocks/turrets/eideann/eideann-heat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/blocks/turrets/eideann/eideann-heat.png -------------------------------------------------------------------------------- /sprites/blocks/turrets/eideann/eideann-preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/blocks/turrets/eideann/eideann-preview.png -------------------------------------------------------------------------------- /sprites/blocks/turrets/eideann/eideann.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/blocks/turrets/eideann/eideann.png -------------------------------------------------------------------------------- /sprites/blocks/turrets/flux/flux-back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/blocks/turrets/flux/flux-back.png -------------------------------------------------------------------------------- /sprites/blocks/turrets/flux/flux-blade-l.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/blocks/turrets/flux/flux-blade-l.png -------------------------------------------------------------------------------- /sprites/blocks/turrets/flux/flux-blade-r.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/blocks/turrets/flux/flux-blade-r.png -------------------------------------------------------------------------------- /sprites/blocks/turrets/flux/flux-heat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/blocks/turrets/flux/flux-heat.png -------------------------------------------------------------------------------- /sprites/blocks/turrets/flux/flux-preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/blocks/turrets/flux/flux-preview.png -------------------------------------------------------------------------------- /sprites/blocks/turrets/flux/flux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/blocks/turrets/flux/flux.png -------------------------------------------------------------------------------- /sprites/blocks/turrets/gijima/gijima-back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/blocks/turrets/gijima/gijima-back.png -------------------------------------------------------------------------------- /sprites/blocks/turrets/gijima/gijima-blade-l.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/blocks/turrets/gijima/gijima-blade-l.png -------------------------------------------------------------------------------- /sprites/blocks/turrets/gijima/gijima-blade-r.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/blocks/turrets/gijima/gijima-blade-r.png -------------------------------------------------------------------------------- /sprites/blocks/turrets/gijima/gijima-heat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/blocks/turrets/gijima/gijima-heat.png -------------------------------------------------------------------------------- /sprites/blocks/turrets/gijima/gijima-preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/blocks/turrets/gijima/gijima-preview.png -------------------------------------------------------------------------------- /sprites/blocks/turrets/gijima/gijima.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/blocks/turrets/gijima/gijima.png -------------------------------------------------------------------------------- /sprites/blocks/turrets/isolde.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/blocks/turrets/isolde.png -------------------------------------------------------------------------------- /sprites/blocks/turrets/lasersprites/pyra-laser-center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/blocks/turrets/lasersprites/pyra-laser-center.png -------------------------------------------------------------------------------- /sprites/blocks/turrets/lasersprites/pyra-laser-end.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/blocks/turrets/lasersprites/pyra-laser-end.png -------------------------------------------------------------------------------- /sprites/blocks/turrets/lasersprites/pyra-laser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/blocks/turrets/lasersprites/pyra-laser.png -------------------------------------------------------------------------------- /sprites/blocks/turrets/lasersprites/small-pyra-laser-center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/blocks/turrets/lasersprites/small-pyra-laser-center.png -------------------------------------------------------------------------------- /sprites/blocks/turrets/lasersprites/small-pyra-laser-end.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/blocks/turrets/lasersprites/small-pyra-laser-end.png -------------------------------------------------------------------------------- /sprites/blocks/turrets/lasersprites/small-pyra-laser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/blocks/turrets/lasersprites/small-pyra-laser.png -------------------------------------------------------------------------------- /sprites/blocks/turrets/prisma/prisma-back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/blocks/turrets/prisma/prisma-back.png -------------------------------------------------------------------------------- /sprites/blocks/turrets/prisma/prisma-blade-l.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/blocks/turrets/prisma/prisma-blade-l.png -------------------------------------------------------------------------------- /sprites/blocks/turrets/prisma/prisma-blade-r.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/blocks/turrets/prisma/prisma-blade-r.png -------------------------------------------------------------------------------- /sprites/blocks/turrets/prisma/prisma-heat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/blocks/turrets/prisma/prisma-heat.png -------------------------------------------------------------------------------- /sprites/blocks/turrets/prisma/prisma-preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/blocks/turrets/prisma/prisma-preview.png -------------------------------------------------------------------------------- /sprites/blocks/turrets/prisma/prisma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/blocks/turrets/prisma/prisma.png -------------------------------------------------------------------------------- /sprites/blocks/turrets/sanitatem/sanitatem-heat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/blocks/turrets/sanitatem/sanitatem-heat.png -------------------------------------------------------------------------------- /sprites/blocks/turrets/sanitatem/sanitatem-preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/blocks/turrets/sanitatem/sanitatem-preview.png -------------------------------------------------------------------------------- /sprites/blocks/turrets/sanitatem/sanitatem-shield-l.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/blocks/turrets/sanitatem/sanitatem-shield-l.png -------------------------------------------------------------------------------- /sprites/blocks/turrets/sanitatem/sanitatem-shield-r.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/blocks/turrets/sanitatem/sanitatem-shield-r.png -------------------------------------------------------------------------------- /sprites/blocks/turrets/sanitatem/sanitatem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/blocks/turrets/sanitatem/sanitatem.png -------------------------------------------------------------------------------- /sprites/blocks/turrets/vita/tiny-laser-center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/blocks/turrets/vita/tiny-laser-center.png -------------------------------------------------------------------------------- /sprites/blocks/turrets/vita/tiny-laser-end.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/blocks/turrets/vita/tiny-laser-end.png -------------------------------------------------------------------------------- /sprites/blocks/turrets/vita/tiny-laser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/blocks/turrets/vita/tiny-laser.png -------------------------------------------------------------------------------- /sprites/blocks/turrets/vita/vita-heat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/blocks/turrets/vita/vita-heat.png -------------------------------------------------------------------------------- /sprites/blocks/turrets/vita/vita-preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/blocks/turrets/vita/vita-preview.png -------------------------------------------------------------------------------- /sprites/blocks/turrets/vita/vita-shield-l.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/blocks/turrets/vita/vita-shield-l.png -------------------------------------------------------------------------------- /sprites/blocks/turrets/vita/vita-shield-r.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/blocks/turrets/vita/vita-shield-r.png -------------------------------------------------------------------------------- /sprites/blocks/turrets/vita/vita.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/blocks/turrets/vita/vita.png -------------------------------------------------------------------------------- /sprites/blocks/units/factories/tier-1-factory-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/blocks/units/factories/tier-1-factory-top.png -------------------------------------------------------------------------------- /sprites/blocks/units/factories/tier-1-factory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/blocks/units/factories/tier-1-factory.png -------------------------------------------------------------------------------- /sprites/blocks/units/reconstructors/tier-2-reconstructor-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/blocks/units/reconstructors/tier-2-reconstructor-top.png -------------------------------------------------------------------------------- /sprites/blocks/units/reconstructors/tier-2-reconstructor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/blocks/units/reconstructors/tier-2-reconstructor.png -------------------------------------------------------------------------------- /sprites/blocks/units/reconstructors/tier-3-reconstructor-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/blocks/units/reconstructors/tier-3-reconstructor-top.png -------------------------------------------------------------------------------- /sprites/blocks/units/reconstructors/tier-3-reconstructor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/blocks/units/reconstructors/tier-3-reconstructor.png -------------------------------------------------------------------------------- /sprites/blocks/units/reconstructors/tier-4-reconstructor-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/blocks/units/reconstructors/tier-4-reconstructor-top.png -------------------------------------------------------------------------------- /sprites/blocks/units/reconstructors/tier-4-reconstructor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/blocks/units/reconstructors/tier-4-reconstructor.png -------------------------------------------------------------------------------- /sprites/blocks/units/reconstructors/tier-5-reconstructor-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/blocks/units/reconstructors/tier-5-reconstructor-top.png -------------------------------------------------------------------------------- /sprites/blocks/units/reconstructors/tier-5-reconstructor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/blocks/units/reconstructors/tier-5-reconstructor.png -------------------------------------------------------------------------------- /sprites/items/ai-core.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/items/ai-core.png -------------------------------------------------------------------------------- /sprites/items/magmium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/items/magmium.png -------------------------------------------------------------------------------- /sprites/items/molten-alloy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/items/molten-alloy.png -------------------------------------------------------------------------------- /sprites/items/packet-flare.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/items/packet-flare.png -------------------------------------------------------------------------------- /sprites/items/packet-fossores.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/items/packet-fossores.png -------------------------------------------------------------------------------- /sprites/items/packet-sterna.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/items/packet-sterna.png -------------------------------------------------------------------------------- /sprites/liquids/plasmatic-slag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/liquids/plasmatic-slag.png -------------------------------------------------------------------------------- /sprites/no texture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/no texture.png -------------------------------------------------------------------------------- /sprites/statuses/build.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/statuses/build.png -------------------------------------------------------------------------------- /sprites/statuses/costRestore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/statuses/costRestore.png -------------------------------------------------------------------------------- /sprites/statuses/energyDrain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/statuses/energyDrain.png -------------------------------------------------------------------------------- /sprites/units/drone/attacking-dorito-cell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/units/drone/attacking-dorito-cell.png -------------------------------------------------------------------------------- /sprites/units/drone/attacking-dorito.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/units/drone/attacking-dorito.png -------------------------------------------------------------------------------- /sprites/units/drone/exploding-dorito-cell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/units/drone/exploding-dorito-cell.png -------------------------------------------------------------------------------- /sprites/units/drone/exploding-dorito.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/units/drone/exploding-dorito.png -------------------------------------------------------------------------------- /sprites/units/drone/healing-dorito-cell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/units/drone/healing-dorito-cell.png -------------------------------------------------------------------------------- /sprites/units/drone/healing-dorito.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/units/drone/healing-dorito.png -------------------------------------------------------------------------------- /sprites/units/drone/iris-cell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/units/drone/iris-cell.png -------------------------------------------------------------------------------- /sprites/units/drone/iris-full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/units/drone/iris-full.png -------------------------------------------------------------------------------- /sprites/units/drone/iris.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/units/drone/iris.png -------------------------------------------------------------------------------- /sprites/units/drone/rose-cell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/units/drone/rose-cell.png -------------------------------------------------------------------------------- /sprites/units/drone/rose-full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/units/drone/rose-full.png -------------------------------------------------------------------------------- /sprites/units/drone/rose.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/units/drone/rose.png -------------------------------------------------------------------------------- /sprites/units/ground-type/Acyuta-cell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/units/ground-type/Acyuta-cell.png -------------------------------------------------------------------------------- /sprites/units/ground-type/Acyuta-full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/units/ground-type/Acyuta-full.png -------------------------------------------------------------------------------- /sprites/units/ground-type/Acyuta-treads.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/units/ground-type/Acyuta-treads.png -------------------------------------------------------------------------------- /sprites/units/ground-type/Acyuta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/units/ground-type/Acyuta.png -------------------------------------------------------------------------------- /sprites/units/ground-type/Akalbir-cell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/units/ground-type/Akalbir-cell.png -------------------------------------------------------------------------------- /sprites/units/ground-type/Akalbir-full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/units/ground-type/Akalbir-full.png -------------------------------------------------------------------------------- /sprites/units/ground-type/Akalbir-treads.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/units/ground-type/Akalbir-treads.png -------------------------------------------------------------------------------- /sprites/units/ground-type/Akalbir.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/units/ground-type/Akalbir.png -------------------------------------------------------------------------------- /sprites/units/ground-type/Amarsukh-cell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/units/ground-type/Amarsukh-cell.png -------------------------------------------------------------------------------- /sprites/units/ground-type/Amarsukh-full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/units/ground-type/Amarsukh-full.png -------------------------------------------------------------------------------- /sprites/units/ground-type/Amarsukh-treads.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/units/ground-type/Amarsukh-treads.png -------------------------------------------------------------------------------- /sprites/units/ground-type/Amarsukh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/units/ground-type/Amarsukh.png -------------------------------------------------------------------------------- /sprites/units/ground-type/curativo-cell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/units/ground-type/curativo-cell.png -------------------------------------------------------------------------------- /sprites/units/ground-type/curativo-drill-spinner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/units/ground-type/curativo-drill-spinner.png -------------------------------------------------------------------------------- /sprites/units/ground-type/curativo-drill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/units/ground-type/curativo-drill.png -------------------------------------------------------------------------------- /sprites/units/ground-type/curativo-treads.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/units/ground-type/curativo-treads.png -------------------------------------------------------------------------------- /sprites/units/ground-type/curativo-ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/units/ground-type/curativo-ui.png -------------------------------------------------------------------------------- /sprites/units/ground-type/curativo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/units/ground-type/curativo.png -------------------------------------------------------------------------------- /sprites/units/ground-type/reparar-cell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/units/ground-type/reparar-cell.png -------------------------------------------------------------------------------- /sprites/units/ground-type/reparar-drill-spinner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/units/ground-type/reparar-drill-spinner.png -------------------------------------------------------------------------------- /sprites/units/ground-type/reparar-treads.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/units/ground-type/reparar-treads.png -------------------------------------------------------------------------------- /sprites/units/ground-type/reparar-ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/units/ground-type/reparar-ui.png -------------------------------------------------------------------------------- /sprites/units/ground-type/reparar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/units/ground-type/reparar.png -------------------------------------------------------------------------------- /sprites/units/ground-type/weapons/Acyuta-weapon-cell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/units/ground-type/weapons/Acyuta-weapon-cell.png -------------------------------------------------------------------------------- /sprites/units/ground-type/weapons/Acyuta-weapon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/units/ground-type/weapons/Acyuta-weapon.png -------------------------------------------------------------------------------- /sprites/units/ground-type/weapons/Akalbir-weapon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/units/ground-type/weapons/Akalbir-weapon.png -------------------------------------------------------------------------------- /sprites/units/ground-type/weapons/Amar-weapon-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/units/ground-type/weapons/Amar-weapon-1.png -------------------------------------------------------------------------------- /sprites/units/ground-type/weapons/Amar-weapon-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/units/ground-type/weapons/Amar-weapon-2.png -------------------------------------------------------------------------------- /sprites/units/ground-type/weapons/Amar-weapon-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/units/ground-type/weapons/Amar-weapon-3.png -------------------------------------------------------------------------------- /sprites/units/ground-type/wip-cell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/units/ground-type/wip-cell.png -------------------------------------------------------------------------------- /sprites/units/ground-type/wip-full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/units/ground-type/wip-full.png -------------------------------------------------------------------------------- /sprites/units/ground-type/wip-treads.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/units/ground-type/wip-treads.png -------------------------------------------------------------------------------- /sprites/units/ground-type/wip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/units/ground-type/wip.png -------------------------------------------------------------------------------- /sprites/units/interceptor-type/arei-cell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/units/interceptor-type/arei-cell.png -------------------------------------------------------------------------------- /sprites/units/interceptor-type/arei-full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/units/interceptor-type/arei-full.png -------------------------------------------------------------------------------- /sprites/units/interceptor-type/arei-weapon-heat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/units/interceptor-type/arei-weapon-heat.png -------------------------------------------------------------------------------- /sprites/units/interceptor-type/arei.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/units/interceptor-type/arei.png -------------------------------------------------------------------------------- /sprites/units/interceptor-type/delver-cell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/units/interceptor-type/delver-cell.png -------------------------------------------------------------------------------- /sprites/units/interceptor-type/delver-full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/units/interceptor-type/delver-full.png -------------------------------------------------------------------------------- /sprites/units/interceptor-type/delver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/units/interceptor-type/delver.png -------------------------------------------------------------------------------- /sprites/units/interceptor-type/dredge-cell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/units/interceptor-type/dredge-cell.png -------------------------------------------------------------------------------- /sprites/units/interceptor-type/dredge-full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/units/interceptor-type/dredge-full.png -------------------------------------------------------------------------------- /sprites/units/interceptor-type/dredge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/units/interceptor-type/dredge.png -------------------------------------------------------------------------------- /sprites/units/interceptor-type/fossores-cell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/units/interceptor-type/fossores-cell.png -------------------------------------------------------------------------------- /sprites/units/interceptor-type/fossores-full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/units/interceptor-type/fossores-full.png -------------------------------------------------------------------------------- /sprites/units/interceptor-type/fossores.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/units/interceptor-type/fossores.png -------------------------------------------------------------------------------- /sprites/units/interceptor-type/mothership-cell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/units/interceptor-type/mothership-cell.png -------------------------------------------------------------------------------- /sprites/units/interceptor-type/mothership-full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/units/interceptor-type/mothership-full.png -------------------------------------------------------------------------------- /sprites/units/interceptor-type/mothership.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/units/interceptor-type/mothership.png -------------------------------------------------------------------------------- /sprites/units/interceptor-type/navis-cell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/units/interceptor-type/navis-cell.png -------------------------------------------------------------------------------- /sprites/units/interceptor-type/navis-full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/units/interceptor-type/navis-full.png -------------------------------------------------------------------------------- /sprites/units/interceptor-type/navis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/units/interceptor-type/navis.png -------------------------------------------------------------------------------- /sprites/units/interceptor-type/sterna-cell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/units/interceptor-type/sterna-cell.png -------------------------------------------------------------------------------- /sprites/units/interceptor-type/sterna-full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/units/interceptor-type/sterna-full.png -------------------------------------------------------------------------------- /sprites/units/interceptor-type/sterna.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/units/interceptor-type/sterna.png -------------------------------------------------------------------------------- /sprites/units/interceptor-type/weapons/big-cannon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/units/interceptor-type/weapons/big-cannon.png -------------------------------------------------------------------------------- /sprites/units/interceptor-type/weapons/cannon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/units/interceptor-type/weapons/cannon.png -------------------------------------------------------------------------------- /sprites/units/interceptor-type/weapons/cluster-cannon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/units/interceptor-type/weapons/cluster-cannon.png -------------------------------------------------------------------------------- /sprites/units/interceptor-type/weapons/electric-laser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/units/interceptor-type/weapons/electric-laser.png -------------------------------------------------------------------------------- /sprites/units/interceptor-type/weapons/repair-point-cell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/units/interceptor-type/weapons/repair-point-cell.png -------------------------------------------------------------------------------- /sprites/units/interceptor-type/weapons/repair-point.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/units/interceptor-type/weapons/repair-point.png -------------------------------------------------------------------------------- /sprites/units/interceptor-type/weapons/repair-turret.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/units/interceptor-type/weapons/repair-turret.png -------------------------------------------------------------------------------- /sprites/units/interceptor-type/weapons/small-blaster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/units/interceptor-type/weapons/small-blaster.png -------------------------------------------------------------------------------- /sprites/units/interceptor-type/weapons/small-repair-point.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/units/interceptor-type/weapons/small-repair-point.png -------------------------------------------------------------------------------- /sprites/units/naval-type/auxilium-cell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/units/naval-type/auxilium-cell.png -------------------------------------------------------------------------------- /sprites/units/naval-type/auxilium-full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/units/naval-type/auxilium-full.png -------------------------------------------------------------------------------- /sprites/units/naval-type/auxilium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/units/naval-type/auxilium.png -------------------------------------------------------------------------------- /sprites/units/naval-type/eruca-cell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/units/naval-type/eruca-cell.png -------------------------------------------------------------------------------- /sprites/units/naval-type/eruca-full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/units/naval-type/eruca-full.png -------------------------------------------------------------------------------- /sprites/units/naval-type/eruca.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/units/naval-type/eruca.png -------------------------------------------------------------------------------- /sprites/units/naval-type/gladius-cell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/units/naval-type/gladius-cell.png -------------------------------------------------------------------------------- /sprites/units/naval-type/gladius-full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/units/naval-type/gladius-full.png -------------------------------------------------------------------------------- /sprites/units/naval-type/gladius.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/units/naval-type/gladius.png -------------------------------------------------------------------------------- /sprites/units/naval-type/pellentesque-cell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/units/naval-type/pellentesque-cell.png -------------------------------------------------------------------------------- /sprites/units/naval-type/pellentesque-full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/units/naval-type/pellentesque-full.png -------------------------------------------------------------------------------- /sprites/units/naval-type/pellentesque.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/units/naval-type/pellentesque.png -------------------------------------------------------------------------------- /sprites/units/naval-type/proelium-cell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/units/naval-type/proelium-cell.png -------------------------------------------------------------------------------- /sprites/units/naval-type/proelium-full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/units/naval-type/proelium-full.png -------------------------------------------------------------------------------- /sprites/units/naval-type/proelium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/units/naval-type/proelium.png -------------------------------------------------------------------------------- /sprites/units/naval-type/unit-missiles/missile-u1-cell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/units/naval-type/unit-missiles/missile-u1-cell.png -------------------------------------------------------------------------------- /sprites/units/naval-type/unit-missiles/missile-u1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/units/naval-type/unit-missiles/missile-u1.png -------------------------------------------------------------------------------- /sprites/units/naval-type/unit-missiles/missile-u2-cell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/units/naval-type/unit-missiles/missile-u2-cell.png -------------------------------------------------------------------------------- /sprites/units/naval-type/unit-missiles/missile-u2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/units/naval-type/unit-missiles/missile-u2.png -------------------------------------------------------------------------------- /sprites/units/naval-type/unit-missiles/wip-missile-cell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/units/naval-type/unit-missiles/wip-missile-cell.png -------------------------------------------------------------------------------- /sprites/units/naval-type/unit-missiles/wip-missile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/units/naval-type/unit-missiles/wip-missile.png -------------------------------------------------------------------------------- /sprites/units/naval-type/weapons/large-rl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/units/naval-type/weapons/large-rl.png -------------------------------------------------------------------------------- /sprites/units/naval-type/weapons/small-rl-cell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/units/naval-type/weapons/small-rl-cell.png -------------------------------------------------------------------------------- /sprites/units/naval-type/weapons/small-rl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valigaming15/pyra-erekir/f25499588363127961a3429e9bc234d9b542db95/sprites/units/naval-type/weapons/small-rl.png --------------------------------------------------------------------------------