mirror of
https://github.com/Anuken/Mindustry.git
synced 2025-07-16 02:38:37 +07:00
32 lines
782 B
Java
32 lines
782 B
Java
![]() |
package mindustry.content;
|
||
|
|
||
|
import static mindustry.content.Blocks.*;
|
||
|
import static mindustry.content.TechTree.*;
|
||
|
|
||
|
public class ErekirTechTree{
|
||
|
|
||
|
public static void load(){
|
||
|
rootErekir = node(coreBastion, () -> {
|
||
|
node(duct, () -> {
|
||
|
node(ductRouter, () -> {
|
||
|
node(ductBridge, () -> {
|
||
|
node(surgeConveyor, () -> {
|
||
|
node(surgeRouter);
|
||
|
});
|
||
|
});
|
||
|
|
||
|
node(overflowDuct, () -> {
|
||
|
|
||
|
});
|
||
|
|
||
|
node(reinforcedContainer, () -> {
|
||
|
node(reinforcedVault, () -> {
|
||
|
|
||
|
});
|
||
|
});
|
||
|
});
|
||
|
});
|
||
|
});
|
||
|
}
|
||
|
}
|