Adding Block: Heat Source (#6855)

* Update Blocks.java

* ,

* Update Blocks.java

* Add files via upload

* Delete 5618F7BA-F0D0-4FFF-AE6A-185BFEA99F16.png

* Add files via upload

* Add files via upload

* Add files via upload

* Update Blocks.java

* Bundle

* 1m to 10k

* Update bundle.properties

* TR

* 10k to 1k

Co-authored-by: Anuken <arnukren@gmail.com>
This commit is contained in:
RTOmega
2022-07-22 20:59:32 +03:00
committed by GitHub
parent f16894592f
commit 9a3a6c31b3
7 changed files with 14 additions and 2 deletions

View File

@@ -76,7 +76,7 @@ public class Blocks{
carbideCrucible, slagCentrifuge, surgeCrucible, cyanogenSynthesizer, phaseSynthesizer, heatReactor,
//sandbox
powerSource, powerVoid, itemSource, itemVoid, liquidSource, liquidVoid, payloadSource, payloadVoid, illuminator,
powerSource, powerVoid, itemSource, itemVoid, liquidSource, liquidVoid, payloadSource, payloadVoid, illuminator, heatSource,
//defense
copperWall, copperWallLarge, titaniumWall, titaniumWallLarge, plastaniumWall, plastaniumWallLarge, thoriumWall, thoriumWallLarge, door, doorLarge,
@@ -5508,6 +5508,14 @@ public class Blocks{
size = 5;
alwaysUnlocked = true;
}};
heatSource = new HeatProducer("heat-source"){{
requirements(Category.crafting, BuildVisibility.sandboxOnly, with());
drawer = new DrawMulti(new DrawDefault(), new DrawHeatOutput());
rotateDraw = false;
size = 1;
heatOutput = 1000f;
regionRotated1 = 1;
}};
//TODO move
illuminator = new LightBlock("illuminator"){{