Skip to content

Commit

Permalink
Fix GCP using wrong energy cap and update guidebook (#667)
Browse files Browse the repository at this point in the history
  • Loading branch information
Technici4n authored Mar 14, 2024
1 parent e81c5b6 commit 16b196e
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion src/main/java/aztech/modern_industrialization/MIItem.java
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ public static void init(IEventBus modBus) {
public static final ItemDefinition<GraviChestPlateItem> GRAVICHESTPLATE = item("Gravichestplate", "gravichestplate", GraviChestPlateItem::new, ITEMS_OTHER)
.withItemRegistrationEvent(item -> {
MICapabilities.onEvent(event -> {
ISimpleEnergyItem.registerStorage(event, item);
event.registerItem(EnergyApi.ITEM, (stack, ctx) -> ISimpleEnergyItem.createStorage(stack, item.getEnergyCapacity(stack), item.getEnergyMaxInput(stack), item.getEnergyMaxOutput(stack)), item);
});
});

Expand Down
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
{
"name": "GraviChestPlate",
"name": "Gravichestplate",
"category": "modern_industrialization:endgame",
"icon": "modern_industrialization:gravichestplate",
"pages": [
{
"type": "spotlight",
"item": "modern_industrialization:gravichestplate",
"text": "The GraviChestPlate uses advanced superconductor technology to invert the gravitational field around the player wearing it.$(br2)It uses EU, and can be charged by right-clicking a block that can output energy."
"text": "The Gravichestplate uses advanced superconductor technology to invert the gravitational field around the player wearing it.$(br2)It uses EU, and can be charged by right-clicking a Storage Unit or Transformer."
},
{
"type": "text",
"text": "Note that the current GSP technology grants fly and prevents fall damage, but it does not protected against other kinds of damage.$(br2)The Modern Industrialization engineers are trying to find a solution, but R&D is taking longer than expected."
}
],
"sortnum": 300
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
{
"type": "crafting",
"recipe": "modern_industrialization:steam_age/fireclay/coke_oven",
"text": "For this first multiblock, you will need the Coke Oven itself of course, 21 Bricks and 3 $(thing)Hatches$(): an item input, an item output and a fluid input."
"text": "For this first multiblock, you will need the Coke Oven itself of course, 21 Bricks and 3 $(thing)Hatches$(): an item input, an item output and a fluid input.$(br2)Optionally add a fluid output hatch to collect creosote too."
},
{
"type": "crafting",
Expand All @@ -24,11 +24,11 @@
},
{
"type": "text",
"text": "The Coke Oven block here has the role of a $(thing)Controller$(). Every multiblock is managed by a controller, but you usually cannot interact with the controller directly: all input and output goes through hatches. We need a fluid input because the coke oven is powered by steam, we need an item input for the coal and an output for the coke.$(br2)If we forget one of the hatches, the coke oven will not be able to start!"
"text": "The Coke Oven block here has the role of a $(thing)Controller$(). Every multiblock is managed by a controller, but you usually cannot interact with the controller directly: all input and output goes through hatches. We need a fluid input because the coke oven is powered by steam, we need an item input for the coal and an output for the coke.$(br2)We can optionally add a fluid output hatch for the creosote. It is a chanced output and will therefore be voided if there is no room for it."
},
{
"type": "text",
"text": "$(l)Hold a Wrench to see the missing blocks and the errors!$() You can also hold a Hatch to know where it can go.$(br2)We need 21 Bricks for this multiblock! Check REI, it says 24 total, but we have 3 hatches so we only need bricks for the 21 remaining blocks!"
"text": "If we forget one of the hatches, the coke oven will not be able to start!$(br2)$(l)Hold a Wrench to see the missing blocks and the errors!$() You can also hold a Hatch to know where it can go.$(br2)We need 21 Bricks for this multiblock! Check REI, it says 24 total, but we have 3 hatches so we only need bricks for the 21 remaining blocks!"
},
{
"type": "image",
Expand All @@ -44,4 +44,4 @@
}
],
"sortnum": 9
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
{
"type": "crafting",
"recipe": "modern_industrialization:steam_age/steel/steel_upgrade_asbl",
"text": "To upgrade a bronze machine, craft a Steel Upgrade and apply it in a Smithing Table."
"text": "To upgrade a bronze machine, craft a Steel Upgrade and apply it in a Crafting Table.$(br2)You can also sneak and right-click a bronze machine with the upgrade to apply it directly."
},
{
"type": "text",
Expand Down Expand Up @@ -41,4 +41,4 @@
}
],
"sortnum": 11
}
}

0 comments on commit 16b196e

Please sign in to comment.