Skip to content

Commit

Permalink
add sectors in tech tree
Browse files Browse the repository at this point in the history
  • Loading branch information
= committed Sep 21, 2024
1 parent e6cc100 commit 07f8400
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 1 deletion.
Binary file modified atlas.sai2
Binary file not shown.
Binary file removed icon.jpg
Binary file not shown.
6 changes: 6 additions & 0 deletions src/sw/content/SWTechTree.java
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,12 @@ public static void init(Seq<TechNode> root) {
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().icon = Icon.terrain;
// endregion
}
}
4 changes: 3 additions & 1 deletion src/sw/content/blocks/SWCrafting.java
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,9 @@ public static void load() {
}};
chalkSeparator = new SWGenericCrafter("chalk-separator") {{
requirements(Category.crafting, with(

SWItems.iron, 50,
SWItems.compound, 35,
Items.silicon, 30
));
size = 2;
health = 160;
Expand Down

0 comments on commit 07f8400

Please sign in to comment.