Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,3 @@ run-data

repo
/src/generated/resources/.cache/
/CS_1.21.1_src.zip
2 changes: 2 additions & 0 deletions src/generated/resources/data/c/tags/block/storage_blocks.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
"values": [
"creatingspace:raw_nickel_block",
"creatingspace:nickel_block",
"creatingspace:raw_cobalt_block",
"creatingspace:raw_aluminum_block",
"creatingspace:aluminum_block",
"creatingspace:cobalt_block",
"creatingspace:copronickel_block",
Expand Down

This file was deleted.

This file was deleted.

1 change: 0 additions & 1 deletion src/generated/resources/data/c/tags/item/ingots.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
"creatingspace:inconel_ingot",
"creatingspace:hastelloy_ingot",
"creatingspace:nickel_ingot",
"creatingspace:aluminum_ingot",

Copy link
Copy Markdown
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

that was correct

"creatingspace:cobalt_ingot"
]
}
2 changes: 0 additions & 2 deletions src/generated/resources/data/c/tags/item/nuggets.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@
"creatingspace:monel_nugget",
"creatingspace:inconel_nugget",
"creatingspace:hastelloy_nugget",
"creatingspace:nickel_nugget",

Copy link
Copy Markdown
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

that was correct

"creatingspace:aluminum_nugget",
"creatingspace:cobalt_nugget"
]
}
1 change: 0 additions & 1 deletion src/generated/resources/data/c/tags/item/ores/cobalt.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
{
"values": [
"creatingspace:crushed_cobalt_ore",
"creatingspace:moon_cobalt_ore"
]
}
2 changes: 0 additions & 2 deletions src/generated/resources/data/c/tags/item/plates.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@
"creatingspace:monel_sheet",
"creatingspace:inconel_sheet",
"creatingspace:hastelloy_sheet",
"creatingspace:nickel_sheet",
"creatingspace:aluminum_sheet",

Copy link
Copy Markdown
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

that was correct

"creatingspace:cobalt_sheet"
]
}
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
{
"values": [
"creatingspace:raw_nickel",
"creatingspace:raw_aluminum",

Copy link
Copy Markdown
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

that was correct

"creatingspace:raw_cobalt"
]
}
2 changes: 2 additions & 0 deletions src/generated/resources/data/c/tags/item/storage_blocks.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
"values": [
"creatingspace:raw_nickel_block",
"creatingspace:nickel_block",
"creatingspace:raw_cobalt_block",
"creatingspace:raw_aluminum_block",
"creatingspace:aluminum_block",
"creatingspace:cobalt_block",
"creatingspace:copronickel_block",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"category": "misc",
"ingredients": [
{
"tag": "c:ingots/aluminum"

Copy link
Copy Markdown
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

that was correct

"tag": "c:nuggets/aluminum"
}
],
"result": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
"creatingspace:raw_nickel_block",
"creatingspace:nickel_block",
"creatingspace:moon_aluminum_ore",
"creatingspace:raw_aluminum_block",
"creatingspace:aluminum_block",
"creatingspace:cobalt_block",
"creatingspace:copronickel_block",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -633,6 +633,7 @@ public class BlockInit {
.initialProperties(() -> Blocks.RAW_IRON_BLOCK)
.tag(BlockTags.NEEDS_DIAMOND_TOOL)
.transform(TagGen.pickaxeOnly())
.tag(Tags.Blocks.STORAGE_BLOCKS)
.tag(TagKey.create(Registries.BLOCK, ResourceLocation.fromNamespaceAndPath("c", "storage_blocks/raw_cobalt")))
.recipe((c, p) ->
ShapedRecipeBuilder.shaped(RecipeCategory.MISC, c.get(), 1)
Expand All @@ -643,6 +644,7 @@ public class BlockInit {
.unlockedBy("has_" + c.getName(), has(c.get()))
.save(p, resource("crafting/" + c.getName())))
.item()
.tag(Tags.Items.STORAGE_BLOCKS)
.tag(TagKey.create(Registries.ITEM, ResourceLocation.fromNamespaceAndPath("c", "storage_blocks/raw_cobalt")))
.transform(customItemModel("raw_cobalt_block"))
.register();
Expand All @@ -669,8 +671,8 @@ public class BlockInit {
public static final BlockEntry<Block> RAW_ALUMINUM_BLOCK = REGISTRATE.block(
"raw_aluminum_block", Block::new)
.initialProperties(() -> Blocks.RAW_IRON_BLOCK)
.tag(BlockTags.NEEDS_IRON_TOOL)
.transform(TagGen.pickaxeOnly())
.tag(Tags.Blocks.STORAGE_BLOCKS)
.tag(TagKey.create(Registries.BLOCK, ResourceLocation.fromNamespaceAndPath("c", "storage_blocks/raw_aluminum")))
.recipe((c, p) ->
ShapedRecipeBuilder.shaped(RecipeCategory.MISC, c.get(), 1)
Expand All @@ -681,6 +683,7 @@ public class BlockInit {
.unlockedBy("has_" + c.getName(), has(c.get()))
.save(p, resource("crafting/" + c.getName())))
.item()
.tag(Tags.Items.STORAGE_BLOCKS)
.tag(TagKey.create(Registries.ITEM, ResourceLocation.fromNamespaceAndPath("c", "storage_blocks/raw_aluminum")))
.transform(customItemModel("raw_aluminum_block"))
.register();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@
"loops": 1,
"results": [
{
"id": "creatingspace:engine_blueprint"
"id": "creatingspace:engine_blueprint",
"count": 2
}
],
"sequence": [
Expand Down
Loading