Rituals guide

This commit is contained in:
Aleksey 2020-12-14 23:08:17 +03:00
parent 3795cb0d8b
commit fb4c850a44
10 changed files with 44 additions and 10 deletions

View file

@ -22,6 +22,7 @@ import net.minecraft.world.biome.Biome.Category;
import net.minecraft.world.gen.surfacebuilder.SurfaceConfig;
import ru.betterend.BetterEnd;
import ru.betterend.blocks.BlockTerrain;
import ru.betterend.blocks.basis.BlockPedestal;
import ru.betterend.blocks.basis.BlockSimpleLeaves;
import ru.betterend.blocks.basis.BlockVine;
import ru.betterend.util.TagHelper;
@ -31,6 +32,7 @@ public class EndTags {
public static final Tag.Identified<Block> END_GROUND = makeBlockTag("end_ground");
public static final Tag.Identified<Block> GEN_TERRAIN = makeBlockTag("gen_terrain");
public static final Tag.Identified<Block> BOOKSHELVES = makeCommonTag("bookshelves");
public static final Tag.Identified<Block> PEDESTALS = makeBlockTag("pedestal");
// Item Tags
public final static Tag<Item> HAMMERS = registerFabricItemTag("hammers");
@ -62,12 +64,12 @@ public class EndTags {
if (block instanceof BlockTerrain) {
addSurfaceBlock(block);
TagHelper.addTag(BlockTags.NYLIUM, block);
}
else if (block instanceof LeavesBlock || block instanceof BlockSimpleLeaves) {
} else if (block instanceof LeavesBlock || block instanceof BlockSimpleLeaves) {
TagHelper.addTag(BlockTags.LEAVES, block);
}
else if (block instanceof BlockVine) {
} else if (block instanceof BlockVine) {
TagHelper.addTag(BlockTags.CLIMBABLE, block);
} else if (block instanceof BlockPedestal) {
TagHelper.addTag(PEDESTALS, block);
}
});

Binary file not shown.

Before

Width:  |  Height:  |  Size: 324 KiB

After

Width:  |  Height:  |  Size: 5.1 KiB

Before After
Before After

Binary file not shown.

Before

Width:  |  Height:  |  Size: 374 KiB

After

Width:  |  Height:  |  Size: 4.8 KiB

Before After
Before After

Binary file not shown.

Before

Width:  |  Height:  |  Size: 362 KiB

After

Width:  |  Height:  |  Size: 11 KiB

Before After
Before After

Binary file not shown.

Before

Width:  |  Height:  |  Size: 126 KiB

After

Width:  |  Height:  |  Size: 2.3 KiB

Before After
Before After

Binary file not shown.

Before

Width:  |  Height:  |  Size: 133 KiB

After

Width:  |  Height:  |  Size: 2.9 KiB

Before After
Before After

Binary file not shown.

Before

Width:  |  Height:  |  Size: 142 KiB

After

Width:  |  Height:  |  Size: 3.6 KiB

Before After
Before After

Binary file not shown.

Before

Width:  |  Height:  |  Size: 126 KiB

After

Width:  |  Height:  |  Size: 2.3 KiB

Before After
Before After

View file

@ -6,7 +6,39 @@
"pages": [
{
"type": "text",
"text": "A not so simple way to return to the Overworld."
"text": "\"A not so simple way to return to the Overworld.\"$(br2)Traveling around the world of the End, you can come across ancient ruins."
},
{
"type": "image",
"text": "There is a destroyed (or not) frame of $(bold)Runed Flavolite$() and eight pedestals around it.",
"border": false,
"images": [
"betterend:textures/images/eternal_ritual/portal_structure.png"
]
},
{
"type": "text",
"text": "These are the remains of the majestic portals that once linked the worlds of the End and Overworld.$(br2)To activate the portal you need to recover frame (if it's broken)."
},
{
"type": "image",
"text": "And place 8 $(bold)Eternal Crystals$() to pedestals.",
"border": false,
"images": [
"betterend:textures/images/eternal_ritual/portal_frame_full.png"
]
},
{
"type": "image",
"text": "After you'll place the last crystal, portal will be activated.",
"border": false,
"images": [
"betterend:textures/images/eternal_ritual/ritual_finished.png"
]
},
{
"type": "text",
"text": "$(bold)Runed Flavolite$() (to recover the frame) and $(bold)Eternal Crystals$() can be obtained by $(l:rituals/infusion_ritual)Infusion Rilual$(/l)."
}
]
}

View file

@ -27,7 +27,7 @@
"type": "image",
"title": "Infusion",
"text": "When ritual structure is ready you can start infusion.",
"border": true,
"border": false,
"images": [
"betterend:textures/images/infusion_ritual/ritual_structure.png"
]
@ -35,7 +35,7 @@
{
"type": "image",
"text": "Place main ingredient to the $(bold)Infusion Pedestal$() and catalists to others.",
"border": true,
"border": false,
"images": [
"betterend:textures/images/infusion_ritual/ritual_ready.png"
]
@ -47,15 +47,15 @@
{
"type": "image",
"text": "Then you need to wait until the ritual is completed.",
"border": true,
"border": false,
"images": [
"betterend:textures/images/infusion_ritual/ritual_started.png"
]
},
{
"type": "image",
"text": "And to take the result.",
"border": true,
"text": "And take the result.",
"border": false,
"images": [
"betterend:textures/images/infusion_ritual/ritual_finished.png"
]