Skip to content

Commit

Permalink
bundles
Browse files Browse the repository at this point in the history
  • Loading branch information
= committed Sep 21, 2024
1 parent 91c201e commit 2947620
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 7 deletions.
10 changes: 10 additions & 0 deletions assets/bundles/bundle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -250,6 +250,16 @@ stat.sw-max-pressure = Max Pressure
stat.sw-output-gas = Output Gas


## Techtree
techtree.sw-crafting = Crafting
techtree.sw-defense = Defense
techtree.sw-distribution = Distribution
techtree.sw-power = Power
techtree.sw-production = Production
techtree.sw-resources = Resources
techtree.sw-sectors = Sectors


## UI
ui.sw-cliff-placer = Cliff Placer
ui.sw-process-cliffs = Process Cliffs
Expand Down
14 changes: 7 additions & 7 deletions src/sw/content/SWTechTree.java
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public static void init(Seq<TechNode> root) {
node(thermiteMixer, with(new Research(boiler)), () -> {});
});
}));
root.peek().name = "crafting";
root.peek().name = "sw-crafting";
root.peek().icon = Icon.crafting;
// endregion
// region defense
Expand All @@ -51,7 +51,7 @@ public static void init(Seq<TechNode> root) {
});
});
}));
root.peek().name = "defense";
root.peek().name = "sw-defense";
root.peek().icon = Icon.turret;
// endregion
// region distribution
Expand All @@ -70,7 +70,7 @@ public static void init(Seq<TechNode> root) {
});
node(compactContainer);
}));
root.peek().name = "distribution";
root.peek().name = "sw-distribution";
root.peek().icon = Icon.distribution;
// endregion
//region power
Expand All @@ -79,15 +79,15 @@ public static void init(Seq<TechNode> root) {
node(gasJunction);
});
}));
root.peek().name = "power";
root.peek().name = "sw-power";
root.peek().icon = Icon.power;
//endregion
// region production
root.add(node(mechanicalBore, () -> {
node(hydraulicDrill);
node(liquidCollector);
}));
root.peek().name = "production";
root.peek().name = "sw-production";
root.peek().icon = Icon.production;
// endregion
// region resources
Expand All @@ -103,15 +103,15 @@ public static void init(Seq<TechNode> root) {
// nodeProduce(fluorane);
});
}));
root.peek().name = "resources";
root.peek().name = "sw-resources";
root.peek().icon = Icon.wrench;
// endregion
// region sectors
root.add(node(nowhere, () -> {
node(anemoia, () -> node(nostalgia));
node(coast, () -> node(island));
}));
root.peek().name = "sectors";
root.peek().name = "sw-sectors";
root.peek().icon = Icon.terrain;
// endregion
}
Expand Down

0 comments on commit 2947620

Please sign in to comment.