├── .gitignore ├── LICENSE ├── README.md ├── banner.png ├── content ├── blocks │ ├── power │ │ └── uranium-reactor.hjson │ ├── production │ │ ├── control-rod-factory.json │ │ ├── gas-uranium-enricher.json │ │ ├── mass-spectrometer-uranium-enricher.json │ │ ├── missile-control-panel.json.disabled │ │ └── uranium-seeder.json │ └── turrets │ │ └── actiner.json ├── items │ ├── item-control-rod.json │ ├── item-u235.json │ └── item-uranium.json └── status │ └── toxic.json ├── credits.md ├── icon.png ├── mod.hjson ├── pal-mindustry.png ├── placeholder.png ├── scripts └── init.js ├── sounds ├── actiner-fire.ogg └── missile-launch.ogg └── sprites ├── blocks ├── power │ ├── uranium-reactor-lights.png │ ├── uranium-reactor-top.png │ ├── uranium-reactor.png │ ├── uranium-seeder-top.png │ └── uranium-seeder.png └── production │ ├── control-rod-factory-top.png │ ├── control-rod-factory.png │ ├── gas-uranium-enricher.png │ ├── mass-spectrometer-uranium-enricher-liquid.png │ ├── mass-spectrometer-uranium-enricher-rotator.png │ ├── mass-spectrometer-uranium-enricher-top.png │ ├── mass-spectrometer-uranium-enricher.png │ └── missile-control-panel.png ├── items ├── item-control-rod.png ├── item-nuclear-waste.png ├── item-u235.png └── item-uranium.png ├── status └── toxic.png └── turrets └── actiner.png /.gitignore: -------------------------------------------------------------------------------- 1 | atomdustry.zip 2 | .env 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Copyright 2022 eclips_e#0001 (Just-a-Unity-Dev) 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: 4 | 5 | The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 6 | 7 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | banner 2 | 3 | # Atomdustry 4 | 5 | The power of the atom in the palm of your hand 6 | 7 | adds multiple new content to the game, most notable being the readdition of Uranium 8 | 9 | ## Credits 10 | 11 | Author: `eclips_e#0001` (Just-a-Unity-Dev) 12 | 13 | Rest of the credits are in [credits.md](credits.md) 14 | 15 | ## Additions 16 | 17 | |Name|Category|Description|Added| 18 | |------|----------|-------------|-------| 19 | |Uranium|Material|Originally in v3.5 and lower|Yes| 20 | |Uranium 235|Material|Enriched from Uranium and used to make weaponry|Yes| 21 | |Control Rods|Material|Used to control the power of the Reactor|Yes| 22 | |Nuclear Waste|Material|Outputted from Nuclear Reactors, was useless. I'll find a way to use it though.|Scrapped, but may be added| 23 | |Toxic|Status|Causes debuffs such as damage, slowness, damage debuff and such more.|Yes| 24 | |Uranium Seeder|Production|Uses the power of Spore Pods to convert Thorium into Uranium|Yes| 25 | |Mass Spectrometer Uranium Enricher|Production|Converts Uranium to U235|Yes| 26 | |Gas Uranium Enricher|Production|Converts Uranium to U235 at a faster rate, but requires a higher power usage|Yes| 27 | |Control Rod Factory|Production|Produces Uranium Control Rods|Yes| 28 | |Uranium Reactor|Power|Don't forget to put in the coolant|Yes| 29 | |Actiner|Turret|Nuclear powered turret that fires high-velocity and high-voltage lasers using Uranium and U235 respectively|Yes| 30 | |M.A.D Termination|Music|Composed by (my friend) [@Nulore7](https://twitter.com/nulore7)|Will add in a later version| 31 | -------------------------------------------------------------------------------- /banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Just-a-Unity-Dev/atomdustry/636193cd582fcb42a2113bda86831b79767bb225/banner.png -------------------------------------------------------------------------------- /content/blocks/power/uranium-reactor.hjson: -------------------------------------------------------------------------------- 1 | { 2 | "type": "NuclearReactor", 3 | 4 | // meta 5 | "health": 1200, 6 | "itemCapacity": 30, 7 | "liquidCapacity": 30, 8 | "size": 3, 9 | 10 | // kaboom 11 | "lightColor": "a2ff70", 12 | "explosionRadius": 25000, 13 | "explosionDamage": 16000, 14 | 15 | // regular reactor stuffs 16 | "powerProduction": 500, 17 | "itemDuration": 210, 18 | "heating": 0.5, 19 | 20 | // consumption 21 | "consumes": { 22 | "items": { 23 | "items": [ 24 | "item-uranium/2", 25 | "item-control-rod/4" 26 | ] 27 | }, 28 | "liquid": { 29 | "liquid": "cryofluid", 30 | "amount": 4 31 | } 32 | }, 33 | 34 | "name": "Uranium Reactor", 35 | "description": "Far more efficient than a Thorium Reactor, but also more violent. It has a built in primitive logic processor to shut down the reactor if no control rods are inserted. But since it is primitive technology, it doesn't shut down when lacking coolant.", 36 | "requirements": [ 37 | { "item": "lead", "amount": 400 }, 38 | { "item": "silicon", "amount": 300 }, 39 | { "item": "graphite", "amount": 150 }, 40 | { "item": "item-uranium", "amount": 350 }, 41 | { "item": "metaglass", "amount": 150 }, 42 | { "item": "surge-alloy", "amount": 250 }, 43 | { "item": "blast-compound", "amount": 250 } 44 | ], 45 | 46 | "outputItem": { 47 | "liquid": "liquid-nuclear-waste", 48 | "amount": 16 49 | } 50 | 51 | "category": "power", 52 | "research": "thorium-reactor" 53 | } -------------------------------------------------------------------------------- /content/blocks/production/control-rod-factory.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "GenericCrafter", 3 | 4 | "name": "Control Rod Factory", 5 | "description": "Creates control rods from Silicon and Uranium", 6 | 7 | "size": 2, 8 | "hasPower": true, 9 | "hasLiquids": false, 10 | "hasItems": true, 11 | "craftTime": 350, 12 | "itemCapacity": 30, 13 | "craftEffect": "instBomb", 14 | "updateEffect": "none", 15 | "consumes": { 16 | "power": 2, 17 | "items": { 18 | "items": [ 19 | "item-uranium/3", 20 | "silicon/2" 21 | ] 22 | } 23 | }, 24 | "requirements": [ 25 | {"item": "silicon", "amount": 160}, 26 | {"item": "lead", "amount": 160}, 27 | {"item": "thorium", "amount": 140}, 28 | {"item": "item-uranium", "amount": 60} 29 | ], 30 | "category": "crafting", 31 | "research": "uranium-reactor", 32 | "outputItem": { 33 | "item": "item-control-rod", 34 | "amount": 1 35 | } 36 | } -------------------------------------------------------------------------------- /content/blocks/production/gas-uranium-enricher.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "GenericCrafter", 3 | 4 | "name": "Gas Uranium Enricher", 5 | "description": "Converts Uranium to U235 at a faster rate, but requires a higher power usage", 6 | 7 | "size": 3, 8 | "hasPower": true, 9 | "hasLiquids": false, 10 | "hasItems": true, 11 | "craftTime": 200, 12 | "itemCapacity": 8, 13 | "craftEffect": "instBomb", 14 | "updateEffect": "none", 15 | "consumes": { 16 | "power": 15, 17 | "items": { 18 | "items": [ 19 | "item-uranium/4" 20 | ] 21 | } 22 | }, 23 | "requirements": [ 24 | {"item": "silicon", "amount": 460}, 25 | {"item": "lead", "amount": 160}, 26 | {"item": "thorium", "amount": 140}, 27 | {"item": "item-uranium", "amount": 140}, 28 | {"item": "item-u235", "amount": 50} 29 | ], 30 | "category": "crafting", 31 | "research": "item-uranium", 32 | "outputItem": { 33 | "item": "item-u235", 34 | "amount": 4 35 | } 36 | } -------------------------------------------------------------------------------- /content/blocks/production/mass-spectrometer-uranium-enricher.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "GenericCrafter", 3 | 4 | "name": "Mass Spectrometer Uranium Enricher", 5 | "description": "Converts Uranium to U235", 6 | 7 | "size": 2, 8 | "hasPower": true, 9 | "hasLiquids": false, 10 | "hasItems": true, 11 | "craftTime": 250, 12 | "itemCapacity": 4, 13 | "craftEffect": "instBomb", 14 | "updateEffect": "none", 15 | "consumes": { 16 | "power": 5, 17 | "items": { 18 | "items": [ 19 | "item-uranium/4" 20 | ] 21 | } 22 | }, 23 | "requirements": [ 24 | {"item": "silicon", "amount": 460}, 25 | {"item": "item-uranium", "amount": 140}, 26 | {"item": "lead", "amount": 160}, 27 | {"item": "thorium", "amount": 140} 28 | ], 29 | "category": "crafting", 30 | "research": "item-uranium", 31 | "outputItem": { 32 | "item": "item-u235", 33 | "amount": 1 34 | } 35 | } -------------------------------------------------------------------------------- /content/blocks/production/missile-control-panel.json.disabled: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Missile Control Panel", 3 | "description": "Launch Missiles at your enemies with this 2x2 control panel.", 4 | 5 | "size": 2, 6 | "squareSprite": false, 7 | 8 | "configurable": true, 9 | 10 | "consumes": { 11 | "power": 2, 12 | "items": { 13 | "items": [ 14 | "thorium/3", 15 | "spore-pod/2" 16 | ] 17 | } 18 | }, 19 | 20 | "destructible": true, 21 | "solid": true, 22 | 23 | "requirements": [ 24 | {"item": "silicon", "amount": 460}, 25 | {"item": "lead", "amount": 160}, 26 | {"item": "thorium", "amount": 140} 27 | ], 28 | 29 | "category": "crafting", 30 | "research": "item-uranium" 31 | } -------------------------------------------------------------------------------- /content/blocks/production/uranium-seeder.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "GenericCrafter", 3 | 4 | "name": "Uranium Seeder", 5 | "description": "Seeds Thorium with Spore Pods to create Uranium", 6 | 7 | "size": 2, 8 | "hasPower": true, 9 | "hasLiquids": false, 10 | "hasItems": true, 11 | "craftTime": 150, 12 | "itemCapacity": 15, 13 | "craftEffect": "instBomb", 14 | "updateEffect": "none", 15 | "consumes": { 16 | "power": 2, 17 | "items": { 18 | "items": [ 19 | "thorium/3", 20 | "spore-pod/2" 21 | ] 22 | } 23 | }, 24 | "requirements": [ 25 | {"item": "silicon", "amount": 460}, 26 | {"item": "lead", "amount": 160}, 27 | {"item": "thorium", "amount": 140} 28 | ], 29 | "category": "crafting", 30 | "research": "cultivator", 31 | "outputItem": { 32 | "item": "item-uranium", 33 | "amount": 1 34 | } 35 | } -------------------------------------------------------------------------------- /content/blocks/turrets/actiner.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "ItemTurret", 3 | 4 | "name": "Actiner", 5 | "description": "A nuclear powered turret that fires high-voltage and high-velocity lasers made from Uranium.", 6 | 7 | "researchCostMultiplier": 0.3, 8 | "squareSprite": false, 9 | "outlineColor": "36363CFF", 10 | "size": 2, 11 | "health": 480, 12 | "reloadTime": 65, 13 | "range": 320, 14 | "maxAmmo": 10, 15 | "inaccuracy": 1, 16 | "shots": 1, 17 | "targetAir": true, 18 | "targetGround": true, 19 | "shootCone": 0.08, 20 | "recoilAmount": 0.7, 21 | "restitution": 0.06, 22 | "rotateSpeed": 2, 23 | "shootSound": "actiner-fire", 24 | "ammoTypes": { 25 | "item-uranium": { 26 | "type": "BasicBulletType", 27 | "sprite": "circle-bullet", 28 | "absorbable": true, 29 | "shootEffect": { 30 | "type": "ParticleEffect", 31 | "particles": 30, 32 | "length": 40, 33 | "lifetime": 46, 34 | "interp": "circleOut", 35 | "cone": 20, 36 | "colorFrom": "9CB664FF", 37 | "colorTo": "EDF3A9FF", 38 | "sizeFrom": 5, 39 | "sizeTo": 0 40 | }, 41 | "shrinkY": 0, 42 | "shrinkX": 0, 43 | "speed": 5, 44 | "lifetime": 40, 45 | "damage": 140, 46 | "trailColor": "66B1FFFF", 47 | "trailParam": 5, 48 | "trailLength": 6, 49 | "trailWidth": 5, 50 | "trailEffect": "none", 51 | "statusDuration": 30, 52 | "height": 10, 53 | "width": 10, 54 | "hitEffect": { 55 | "type": "ParticleEffect", 56 | "line": true, 57 | "particles": 5, 58 | "lifetime": 15, 59 | "length": 25, 60 | "cone": -360, 61 | "lenFrom": 5, 62 | "lenTo": 0, 63 | "colorFrom": "9CB664FF", 64 | "colorTo": "EDF3A9FF" 65 | }, 66 | "despawnEffect": { 67 | "type": "ParticleEffect", 68 | "line": true, 69 | "particles": 5, 70 | "lifetime": 15, 71 | "length": 25, 72 | "cone": -360, 73 | "lenFrom": 5, 74 | "lenTo": 0, 75 | "colorFrom": "9CB664FF", 76 | "colorTo": "EDF3A9FF" 77 | }, 78 | "frontColor": "9CB664FF", 79 | "backColor": "EDF3A9FF", 80 | "fragBullets": 3, 81 | "fragCone": 60, 82 | "fragBullet": { 83 | "type": "ShrapnelBulletType", 84 | "status": "melting", 85 | "statusDuration": 30, 86 | "serrations": 0, 87 | "lifetime": 15, 88 | "length": 52, 89 | "absorbable": false, 90 | "width": 20, 91 | "fromColor": "9CB664FF", 92 | "toColor": "EDF3A9FF", 93 | "damage": 10 94 | } 95 | }, 96 | "item-u235": { 97 | "type": "BasicBulletType", 98 | "sprite": "circle-bullet", 99 | "absorbable": true, 100 | "shootEffect": { 101 | "type": "ParticleEffect", 102 | "particles": 30, 103 | "length": 40, 104 | "lifetime": 46, 105 | "interp": "circleOut", 106 | "cone": 20, 107 | "colorFrom": "9CB664FF", 108 | "colorTo": "EDF3A9FF", 109 | "sizeFrom": 5, 110 | "sizeTo": 0 111 | }, 112 | "shrinkY": 0, 113 | "shrinkX": 0, 114 | "speed": 5, 115 | "lifetime": 38, 116 | "damage": 65, 117 | "trailColor": "9CB664FF", 118 | "trailParam": 5, 119 | "trailLength": 6, 120 | "trailWidth": 5, 121 | "trailEffect": "none", 122 | "status": "toxic", 123 | "statusDuration": 30, 124 | "height": 10, 125 | "width": 10, 126 | "hitEffect": { 127 | "type": "ParticleEffect", 128 | "line": true, 129 | "particles": 5, 130 | "lifetime": 15, 131 | "length": 25, 132 | "cone": -360, 133 | "lenFrom": 5, 134 | "lenTo": 0, 135 | "colorFrom": "9CB664FF", 136 | "colorTo": "EDF3A9FF" 137 | }, 138 | "despawnEffect": { 139 | "type": "ParticleEffect", 140 | "line": true, 141 | "particles": 5, 142 | "lifetime": 15, 143 | "length": 25, 144 | "cone": -360, 145 | "lenFrom": 5, 146 | "lenTo": 0, 147 | "colorFrom": "9CB664FF", 148 | "colorTo": "EDF3A9FF" 149 | }, 150 | "frontColor": "9CB664FF", 151 | "backColor": "EDF3A9FF", 152 | "fragBullets": 3, 153 | "fragCone": 60, 154 | "fragBullet": { 155 | "type": "ShrapnelBulletType", 156 | "statusDuration": 30, 157 | "serrations": 0, 158 | "lifetime": 15, 159 | "length": 52, 160 | "absorbable": false, 161 | "width": 20, 162 | "fromColor": "9CB664FF", 163 | "toColor": "EDF3A9FF", 164 | "damage": 10 165 | } 166 | } 167 | }, 168 | "requirements": [ 169 | { "item": "item-uranium", "amount": 500 }, 170 | { "item": "silicon", "amount": 300 }, 171 | { "item": "copper", "amount": 250 }, 172 | { "item": "graphite", "amount": 190 }, 173 | { "item": "titanium", "amount": 160 } 174 | ], 175 | "category": "turret" 176 | } -------------------------------------------------------------------------------- /content/items/item-control-rod.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Nuclear Waste", 3 | "description": "Produced by the Nuclear Reactor, can be used as ammo for weaponry.", 4 | "temperature": 4.45, 5 | "heatCapacity": 1.6, 6 | "color": "9CB664" 7 | } -------------------------------------------------------------------------------- /content/items/item-u235.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "material", 3 | "name": "Uranium 235", 4 | "description": "Extremely fissile radioactive material enriched from uranium.", 5 | "cost": 1.5, 6 | "color": "73D188", 7 | "hardness": 4, 8 | "explosiveness": 2, 9 | "radioactivity": 4, 10 | "research": { 11 | "parent": "item-uranium", 12 | "requirements": [ 13 | "item-u235/1" 14 | ] 15 | } 16 | } -------------------------------------------------------------------------------- /content/items/item-uranium.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "material", 3 | "name": "Uranium", 4 | "description": "Radioactive material, toxic to life. Can be used as fuel for nuclear reactors or turrets.", 5 | "cost": 1.2, 6 | "color": "73D188", 7 | "hardness": 4, 8 | "explosiveness": 1, 9 | "radioactivity": 1.2, 10 | "research": { 11 | "parent": "thorium", 12 | "requirements": [ 13 | "thorium/3", 14 | "spore-pod/2" 15 | ] 16 | } 17 | } -------------------------------------------------------------------------------- /content/status/toxic.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "toxic", 3 | "localizedName": "[green]Toxic[]", 4 | "description": "Poisonous material that damages health and debuff's speed, damage and reload.", 5 | "speedMultiplier": 0.85, 6 | "damageMultiplier": 0.95, 7 | "reloadMultiplier": 0.85, 8 | "effect": { 9 | "type": "ParticleEffect", 10 | "line": true, 11 | "particles": 5, 12 | "lifetime": 10, 13 | "length": 35, 14 | "cone": -360, 15 | "lenFrom": 5, 16 | "lenTo": 0, 17 | "colorFrom": "62AE7FFF", 18 | "colorTo": "84F491FF" 19 | }, 20 | "damage": 6.9 21 | } -------------------------------------------------------------------------------- /credits.md: -------------------------------------------------------------------------------- 1 | # Credits 2 | 3 | ## Created By 4 | 5 | eclips_e#0001 (Just-a-Unity-Dev) 6 | 7 | ## Music Composed by 8 | 9 | [@Nulore7](https://twitter.com/nulore7) -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Just-a-Unity-Dev/atomdustry/636193cd582fcb42a2113bda86831b79767bb225/icon.png -------------------------------------------------------------------------------- /mod.hjson: -------------------------------------------------------------------------------- 1 | name: "atomdustry" 2 | displayName: "[red]At[green]om[accent]dustry" 3 | author: "eclips_e#0001" 4 | description: '''[red]At[green]om[accent]dustry 5 | [white]The power of the atom in the palm of your hand"''' 6 | version: "0.2" 7 | minGameVersion: "135" 8 | dependencies: ["ui-lib"] 9 | hidden: false -------------------------------------------------------------------------------- /pal-mindustry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Just-a-Unity-Dev/atomdustry/636193cd582fcb42a2113bda86831b79767bb225/pal-mindustry.png -------------------------------------------------------------------------------- /placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Just-a-Unity-Dev/atomdustry/636193cd582fcb42a2113bda86831b79767bb225/placeholder.png -------------------------------------------------------------------------------- /scripts/init.js: -------------------------------------------------------------------------------- 1 | const ui = require("ui-lib/library"); 2 | const mcp = extend(GenericCrafter, "missile-control-panel", { 3 | "power": 2, 4 | "items": { 5 | "items": [ 6 | "thorium/3", 7 | "spore-pod/2" 8 | ] 9 | } 10 | }); 11 | mcp.destructible = true; 12 | mcp.solid = true; 13 | mcp.requirements = ItemStack.with(Items.silicon, 460, Items.lead, 160, Items.thorium, 140); 14 | mcp.category = Category.crafting; 15 | // mcp.research = "item-uranium"; 16 | 17 | print("Atomdustry initalized"); -------------------------------------------------------------------------------- /sounds/actiner-fire.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Just-a-Unity-Dev/atomdustry/636193cd582fcb42a2113bda86831b79767bb225/sounds/actiner-fire.ogg -------------------------------------------------------------------------------- /sounds/missile-launch.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Just-a-Unity-Dev/atomdustry/636193cd582fcb42a2113bda86831b79767bb225/sounds/missile-launch.ogg -------------------------------------------------------------------------------- /sprites/blocks/power/uranium-reactor-lights.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Just-a-Unity-Dev/atomdustry/636193cd582fcb42a2113bda86831b79767bb225/sprites/blocks/power/uranium-reactor-lights.png -------------------------------------------------------------------------------- /sprites/blocks/power/uranium-reactor-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Just-a-Unity-Dev/atomdustry/636193cd582fcb42a2113bda86831b79767bb225/sprites/blocks/power/uranium-reactor-top.png -------------------------------------------------------------------------------- /sprites/blocks/power/uranium-reactor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Just-a-Unity-Dev/atomdustry/636193cd582fcb42a2113bda86831b79767bb225/sprites/blocks/power/uranium-reactor.png -------------------------------------------------------------------------------- /sprites/blocks/power/uranium-seeder-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Just-a-Unity-Dev/atomdustry/636193cd582fcb42a2113bda86831b79767bb225/sprites/blocks/power/uranium-seeder-top.png -------------------------------------------------------------------------------- /sprites/blocks/power/uranium-seeder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Just-a-Unity-Dev/atomdustry/636193cd582fcb42a2113bda86831b79767bb225/sprites/blocks/power/uranium-seeder.png -------------------------------------------------------------------------------- /sprites/blocks/production/control-rod-factory-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Just-a-Unity-Dev/atomdustry/636193cd582fcb42a2113bda86831b79767bb225/sprites/blocks/production/control-rod-factory-top.png -------------------------------------------------------------------------------- /sprites/blocks/production/control-rod-factory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Just-a-Unity-Dev/atomdustry/636193cd582fcb42a2113bda86831b79767bb225/sprites/blocks/production/control-rod-factory.png -------------------------------------------------------------------------------- /sprites/blocks/production/gas-uranium-enricher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Just-a-Unity-Dev/atomdustry/636193cd582fcb42a2113bda86831b79767bb225/sprites/blocks/production/gas-uranium-enricher.png -------------------------------------------------------------------------------- /sprites/blocks/production/mass-spectrometer-uranium-enricher-liquid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Just-a-Unity-Dev/atomdustry/636193cd582fcb42a2113bda86831b79767bb225/sprites/blocks/production/mass-spectrometer-uranium-enricher-liquid.png -------------------------------------------------------------------------------- /sprites/blocks/production/mass-spectrometer-uranium-enricher-rotator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Just-a-Unity-Dev/atomdustry/636193cd582fcb42a2113bda86831b79767bb225/sprites/blocks/production/mass-spectrometer-uranium-enricher-rotator.png -------------------------------------------------------------------------------- /sprites/blocks/production/mass-spectrometer-uranium-enricher-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Just-a-Unity-Dev/atomdustry/636193cd582fcb42a2113bda86831b79767bb225/sprites/blocks/production/mass-spectrometer-uranium-enricher-top.png -------------------------------------------------------------------------------- /sprites/blocks/production/mass-spectrometer-uranium-enricher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Just-a-Unity-Dev/atomdustry/636193cd582fcb42a2113bda86831b79767bb225/sprites/blocks/production/mass-spectrometer-uranium-enricher.png -------------------------------------------------------------------------------- /sprites/blocks/production/missile-control-panel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Just-a-Unity-Dev/atomdustry/636193cd582fcb42a2113bda86831b79767bb225/sprites/blocks/production/missile-control-panel.png -------------------------------------------------------------------------------- /sprites/items/item-control-rod.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Just-a-Unity-Dev/atomdustry/636193cd582fcb42a2113bda86831b79767bb225/sprites/items/item-control-rod.png -------------------------------------------------------------------------------- /sprites/items/item-nuclear-waste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Just-a-Unity-Dev/atomdustry/636193cd582fcb42a2113bda86831b79767bb225/sprites/items/item-nuclear-waste.png -------------------------------------------------------------------------------- /sprites/items/item-u235.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Just-a-Unity-Dev/atomdustry/636193cd582fcb42a2113bda86831b79767bb225/sprites/items/item-u235.png -------------------------------------------------------------------------------- /sprites/items/item-uranium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Just-a-Unity-Dev/atomdustry/636193cd582fcb42a2113bda86831b79767bb225/sprites/items/item-uranium.png -------------------------------------------------------------------------------- /sprites/status/toxic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Just-a-Unity-Dev/atomdustry/636193cd582fcb42a2113bda86831b79767bb225/sprites/status/toxic.png -------------------------------------------------------------------------------- /sprites/turrets/actiner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Just-a-Unity-Dev/atomdustry/636193cd582fcb42a2113bda86831b79767bb225/sprites/turrets/actiner.png --------------------------------------------------------------------------------