Added experimental package

This commit is contained in:
Anuken
2020-04-16 16:31:43 -04:00
parent 2f3a842f2e
commit 280f3dd428
22 changed files with 3111 additions and 2636 deletions

View File

@ -18,6 +18,7 @@ import mindustry.world.blocks.defense.*;
import mindustry.world.blocks.defense.turrets.*;
import mindustry.world.blocks.distribution.*;
import mindustry.world.blocks.environment.*;
import mindustry.world.blocks.experimental.*;
import mindustry.world.blocks.legacy.*;
import mindustry.world.blocks.liquid.*;
import mindustry.world.blocks.logic.*;
@ -76,7 +77,11 @@ public class Blocks implements ContentList{
duo, scatter, scorch, hail, arc, wave, lancer, swarmer, salvo, fuse, ripple, cyclone, spectre, meltdown,
//units
groundFactory, repairPoint
groundFactory, repairPoint,
//misc experimental
blockForge, blockLauncher;
;
@ -1727,6 +1732,23 @@ public class Blocks implements ContentList{
new LegacyUnitFactory("legacy-unit-factory");
new LegacyCommandCenter("legacy-command-center");
//endregion
//region experimental
blockForge = new BlockForge("block-forge"){{
requirements(Category.production, ItemStack.with(Items.thorium, 100));
hasPower = true;
consumes.power(2f);
size = 3;
}};
blockLauncher = new BlockLauncher("block-launcher"){{
requirements(Category.production, ItemStack.with(Items.thorium, 100));
size = 3;
hasPower = true;
consumes.power(2f);
}};
//endregion
}
}