Skip to content

Commit

Permalink
doc about how to get there
Browse files Browse the repository at this point in the history
  • Loading branch information
eerussianguy committed Oct 3, 2024
1 parent f2963f8 commit a682af4
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 2 deletions.
4 changes: 4 additions & 0 deletions resources/generate_book.py
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,10 @@ def make_book(rm: ResourceManager, i18n: I18n, local_instance: bool = False, rev
text('The Hellforge requires lava to flow in aqueducts in its four corners, as well as 21 hellbricks. The 3x3 center must be filled with Cursecoal piles, which then may be lit to start the forge.'),
text('The item slots of the Hellforge may contain fuel, or things to be smelted; there is no distinction. Be careful what you put in! There are also slots for melting things, as with the charcoal forge. The lava meter on the screen indicates temperature (as well as the visual movement of its items in world).')
)),
entry('how_to_go_beneath', 'How To Go Beneath', 'minecraft:flint_and_steel', pages=(
text('The sacrifice needed to go Beneath is great. First, hold a $(thing)Scythe$(). Find a Pig, Goat, or Sheep. Then, obtain seven offerings. Valid offerings are skulls, anvils, placed gold, pig iron, or black steel ingots, and gold or black steel plated blocks.'),
text('Kill the animal within a 5 block radius of the offerings. A portal will be created, but be warned! The Beneath will temporarily invade your world, wreaking havoc and causing confusion.')
)),
))

book.build()
Expand Down
5 changes: 4 additions & 1 deletion resources/lang/en_us.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,5 +48,8 @@
"Hellforge": "Hellforge",
"": "",
"The Hellforge requires lava to flow in aqueducts in its four corners, as well as 21 hellbricks. The 3x3 center must be filled with Cursecoal piles, which then may be lit to start the forge.": "The Hellforge requires lava to flow in aqueducts in its four corners, as well as 21 hellbricks. The 3x3 center must be filled with Cursecoal piles, which then may be lit to start the forge.",
"The item slots of the Hellforge may contain fuel, or things to be smelted; there is no distinction. Be careful what you put in! There are also slots for melting things, as with the charcoal forge. The lava meter on the screen indicates temperature (as well as the visual movement of its items in world).": "The item slots of the Hellforge may contain fuel, or things to be smelted; there is no distinction. Be careful what you put in! There are also slots for melting things, as with the charcoal forge. The lava meter on the screen indicates temperature (as well as the visual movement of its items in world)."
"The item slots of the Hellforge may contain fuel, or things to be smelted; there is no distinction. Be careful what you put in! There are also slots for melting things, as with the charcoal forge. The lava meter on the screen indicates temperature (as well as the visual movement of its items in world).": "The item slots of the Hellforge may contain fuel, or things to be smelted; there is no distinction. Be careful what you put in! There are also slots for melting things, as with the charcoal forge. The lava meter on the screen indicates temperature (as well as the visual movement of its items in world).",
"How To Go Beneath": "How To Go Beneath",
"The sacrifice needed to go Beneath is great. First, hold a $(thing)Scythe$(). Find a Pig, Goat, or Sheep. Then, obtain seven offerings. Valid offerings are skulls, anvils, placed gold, pig iron, or black steel ingots, and gold or black steel plated blocks.": "The sacrifice needed to go Beneath is great. First, hold a $(thing)Scythe$(). Find a Pig, Goat, or Sheep. Then, obtain seven offerings. Valid offerings are skulls, anvils, placed gold, pig iron, or black steel ingots, and gold or black steel plated blocks.",
"Kill the animal within a 5 block radius of the offerings. A portal will be created, but be warned! The Beneath will temporarily invade your world, wreaking havoc and causing confusion.": "Kill the animal within a 5 block radius of the offerings. A portal will be created, but be warned! The Beneath will temporarily invade your world, wreaking havoc and causing confusion."
}
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ public static void onLivingDeath(LivingDeathEvent event)
}


public static final int OFFERINGS_NEEDED = 6;
public static final int OFFERINGS_NEEDED = 7;

public static boolean scanForOfferings(LevelAccessor level, BlockPos pos)
{
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{
"__comment__": "This file was automatically created by mcresources",
"name": "How To Go Beneath",
"category": "tfc:beneath",
"icon": "minecraft:flint_and_steel",
"pages": [
{
"type": "patchouli:text",
"text": "The sacrifice needed to go Beneath is great. First, hold a $(thing)Scythe$(). Find a Pig, Goat, or Sheep. Then, obtain seven offerings. Valid offerings are skulls, anvils, placed gold, pig iron, or black steel ingots, and gold or black steel plated blocks."
},
{
"type": "patchouli:text",
"text": "Kill the animal within a 5 block radius of the offerings. A portal will be created, but be warned! The Beneath will temporarily invade your world, wreaking havoc and causing confusion."
}
],
"read_by_default": true
}

0 comments on commit a682af4

Please sign in to comment.